mirror of
https://github.com/ae-utbm/sith.git
synced 2024-10-31 19:38:04 +00:00
10 lines
265 B
Python
10 lines
265 B
Python
|
from django.contrib.auth.forms import UserCreationForm
|
||
|
from .models import User
|
||
|
|
||
|
class RegisteringForm(UserCreationForm):
|
||
|
error_css_class = 'error'
|
||
|
required_css_class = 'required'
|
||
|
class Meta:
|
||
|
model = User
|
||
|
fields = ('username', 'email',)
|