diff options
author | rubenwardy <rw@rubenwardy.com> | 2018-05-13 23:48:04 +0100 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2018-05-13 23:48:04 +0100 |
commit | acc48c72620fe9bfdf3c72666d57af7e3c9306d0 (patch) | |
tree | 65f2a0314d227d94618d3356fd83e3ffd823ddb4 /app/views/users.py | |
parent | ff8bf992a9048e55b58ece46cf25cc3a43edcef7 (diff) | |
download | cheatdb-acc48c72620fe9bfdf3c72666d57af7e3c9306d0.tar.xz |
Remove registering with username/email
Diffstat (limited to 'app/views/users.py')
-rw-r--r-- | app/views/users.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/app/views/users.py b/app/views/users.py index d3ed1aa..e7306c1 100644 --- a/app/views/users.py +++ b/app/views/users.py @@ -11,9 +11,6 @@ from wtforms.validators import * from .utils import rank_required, randomString from app.tasks.forumtasks import checkForumAccount -class MyRegisterForm(RegisterForm): - display_name = StringField("Display name") - # Define the User profile form class UserProfileForm(FlaskForm): display_name = StringField("Display name") |