aboutsummaryrefslogtreecommitdiff
path: root/budget/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'budget/forms.py')
-rw-r--r--budget/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/budget/forms.py b/budget/forms.py
index 367be94..0373da8 100644
--- a/budget/forms.py
+++ b/budget/forms.py
@@ -2,7 +2,7 @@ from flaskext.wtf import *
from models import Project, Person
# define forms
-class CreationForm(Form):
+class ProjectForm(Form):
name = TextField("Project name", validators=[Required()])
id = TextField("Project identifier", validators=[Required()])
password = PasswordField("Password", validators=[Required()])