Initial Django commit: basic account, zephyr stream, narrowing, etc.

(imported from commit 3cd40521171a4020c19021eda0d20ee9f802af41)
This commit is contained in:
Jessica McKellar
2012-08-28 12:44:51 -04:00
committed by Tim Abbott
parent ea43d2e40e
commit d90e8f6ec5
14 changed files with 519 additions and 0 deletions

5
zephyr/forms.py Normal file
View File

@@ -0,0 +1,5 @@
from django import forms
class RegistrationForm(forms.Form):
username = forms.CharField(max_length=100)
password = forms.CharField(max_length=100)