Added forms for login and new user account.
authorKriti Godey <kriti.godey@gmail.com>
Tue, 2 Mar 2010 20:45:11 +0000 (15:45 -0500)
committerKriti Godey <kriti.godey@gmail.com>
Tue, 2 Mar 2010 20:45:11 +0000 (15:45 -0500)
forms.py

index c5a5ae6..e7d2728 100644 (file)
--- a/forms.py
+++ b/forms.py
@@ -1,5 +1,6 @@
 from django.forms import ModelForm
 from models import Sandwich, Ingredient
+from django.contrib.auth.models import User
 
 
 class SandwichForm(ModelForm):
@@ -13,4 +14,18 @@ class IngredientForm(ModelForm):
 
        class Meta:
                model = Ingredient
-               exclude = ('slug',)
\ No newline at end of file
+               exclude = ('slug',)
+
+
+class UserLoginForm(ModelForm):
+       
+       class Meta:
+               model = User
+               fields = ('username', 'password')
+       
+class NewAccountForm(ModelForm):
+       
+       class Meta:
+               model = User
+               fields = ('username', 'first_name', 'last_name', 'email', 'password')
+               
\ No newline at end of file