Source code for users.forms

from django import forms

from django.contrib.auth.forms import UserCreationForm

from .models import CustomUser

[docs] class CustomUserCreationForm(UserCreationForm): """ Form for creating user profile. """
[docs] class Meta: model = CustomUser fields = ['username', 'email', 'bio', 'profile_pic', 'password1', 'password2']
[docs] class EditProfileForm(forms.ModelForm): """ Forms for updating user profile. """
[docs] class Meta: model = CustomUser fields = ['email', 'bio', 'profile_pic']