This commit is contained in:
baccenfutter 2013-10-19 00:47:24 +02:00
commit a5b7dfc60c
100 changed files with 21307 additions and 0 deletions

6
account/forms.py Normal file
View file

@ -0,0 +1,6 @@
from django import forms
class LoginForm(forms.Form):
username = forms.CharField(max_length=255)
password = forms.CharField(max_length=255, widget=forms.PasswordInput)