diff options
author | rubenwardy <rw@rubenwardy.com> | 2018-03-20 03:31:49 +0000 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2018-03-20 03:31:49 +0000 |
commit | 9fc71a5c99d76454995c31465db624ee152f92e7 (patch) | |
tree | dea0f32f8735c872a6e0c15f536b3d02c6237b01 /app/views/users.py | |
parent | dad980c3bf72053b816f131e305dde0576c39e5d (diff) | |
download | cheatdb-9fc71a5c99d76454995c31465db624ee152f92e7.tar.xz |
User profile: fix typo, add rank
Diffstat (limited to 'app/views/users.py')
-rw-r--r-- | app/views/users.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/users.py b/app/views/users.py index 1dc5e29..e1d3408 100644 --- a/app/views/users.py +++ b/app/views/users.py @@ -13,11 +13,11 @@ from flask_user.forms import RegisterForm from flask_wtf import FlaskForm from wtforms import StringField, SubmitField, validators class MyRegisterForm(RegisterForm): - display_name = StringField("Diplay name") + display_name = StringField("Display name") # Define the User profile form class UserProfileForm(FlaskForm): - display_name = StringField("Diplay name") + display_name = StringField("Display name") submit = SubmitField('Save') @app.route('/user/', methods=['GET', 'POST']) |