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
2022-09-15 22:25:55 +03:00

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', 'email', 'phone')
error_css_class = 'error'