Add myAccount view

This commit is contained in:
2018-02-13 08:38:17 +01:00
parent 679a831b7d
commit f952204606
5 changed files with 48 additions and 1 deletions

10
billard/forms.py Normal file
View File

@@ -0,0 +1,10 @@
from django import forms
from django.contrib.auth.models import User
class UserInformationUpdateForm(forms.ModelForm):
email = forms.EmailField()
class Meta:
model = User
fields = ('first_name', 'last_name', 'email',)