Skip to content

Commit

Permalink
fixed gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
sb- committed Dec 21, 2014
1 parent a08db8c commit 29e3b3b
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 630 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.DS_Store
.idea/
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
1 change: 0 additions & 1 deletion .idea/.name

This file was deleted.

17 changes: 0 additions & 17 deletions .idea/OpenExchange.iml

This file was deleted.

5 changes: 0 additions & 5 deletions .idea/encodings.xml

This file was deleted.

5 changes: 0 additions & 5 deletions .idea/misc.xml

This file was deleted.

9 changes: 0 additions & 9 deletions .idea/modules.xml

This file was deleted.

5 changes: 0 additions & 5 deletions .idea/scopes/scope_settings.xml

This file was deleted.

7 changes: 0 additions & 7 deletions .idea/vcs.xml

This file was deleted.

581 changes: 0 additions & 581 deletions .idea/workspace.xml

This file was deleted.

5 changes: 5 additions & 0 deletions app/routes/home.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ class RegistrationForm(Form):
validators.EqualTo('confirm', message='Passwords must match')
])
confirm = PasswordField('Repeat Password')

class LoginForm(Form):
"""Example form straight from Flask-WTF documentation. """
email = TextField('Email Address', [validators.Length(min=6, max=35)])
password = PasswordField('Password', [validators.Required()])
#accept_tos = BooleanField('I accept the TOS', [validators.Required()])

@home.route('/')
Expand Down

0 comments on commit 29e3b3b

Please sign in to comment.