This repository has been archived on 2024-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
arka-mvp/account/forms.py

11 lines
302 B
Python

from django import forms
from django.contrib.auth.forms import UserCreationForm
from .models import SiteUser
class SiteUserForm(UserCreationForm):
class Meta(UserCreationForm.Meta):
model = SiteUser
fields = ('name', 'surname', 'phone', 'email')
error_css_class = 'error'