Some checks failed
Build and Push to Docker Hub / build-test-push (push) Failing after 1m55s
9 lines
232 B
Python
9 lines
232 B
Python
from django.contrib.auth.forms import UserCreationForm
|
|
from core.http.models import User
|
|
|
|
|
|
class CustomUserCreationForm(UserCreationForm):
|
|
class Meta(UserCreationForm.Meta):
|
|
model = User
|
|
fields = ("id", "phone")
|