Fixed URLs of one-sandwich views. Fixed adding sandwiches.
[~kgodey/maayanwich.git] / forms.py
index e7d2728..380f6a4 100644 (file)
--- a/forms.py
+++ b/forms.py
@@ -1,6 +1,7 @@
 from django.forms import ModelForm
 from models import Sandwich, Ingredient
 from django.contrib.auth.models import User
+from django import forms
 
 
 class SandwichForm(ModelForm):
@@ -17,15 +18,10 @@ class IngredientForm(ModelForm):
                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
+class NewUserForm(forms.Form):
+       first_name = forms.CharField()
+       last_name = forms.CharField()
+       email = forms.EmailField()
+       username = forms.CharField()
+       password = forms.CharField(widget=forms.PasswordInput)
+       confirm_password = forms.CharField(widget=forms.PasswordInput)