Added forms for login and new user account.
[~kgodey/maayanwich.git] / forms.py
index 8685ea4..e7d2728 100644 (file)
--- a/forms.py
+++ b/forms.py
@@ -1,5 +1,6 @@
 from django.forms import ModelForm
-from models import Sandwich, Ingredient, Artist
+from models import Sandwich, Ingredient
+from django.contrib.auth.models import User
 
 
 class SandwichForm(ModelForm):
@@ -16,8 +17,15 @@ class IngredientForm(ModelForm):
                exclude = ('slug',)
 
 
-class ArtistForm(ModelForm):
-
+class UserLoginForm(ModelForm):
+       
+       class Meta:
+               model = User
+               fields = ('username', 'password')
+       
+class NewAccountForm(ModelForm):
+       
        class Meta:
-               model = Artist
-               exclude = ('slug',)
\ No newline at end of file
+               model = User
+               fields = ('username', 'first_name', 'last_name', 'email', 'password')
+               
\ No newline at end of file