New user Settings page

This commit is contained in:
Inga Kirschnick
2023-03-15 09:18:11 +01:00
parent f1be57e509
commit 464ae8ecc3
3 changed files with 152 additions and 153 deletions

View File

@ -64,11 +64,13 @@ class EditPublicProfileInformationForm(FlaskForm):
'Full name',
validators=[Length(max=128)]
)
style={'style': 'overflow: auto;'}
about_me = TextAreaField(
'About me',
validators=[
Length(max=254)
]
],
render_kw=style
)
website = StringField(
'Website',

View File

@ -172,5 +172,5 @@ def edit_profile(user_id):
change_password_form=change_password_form,
edit_notification_settings_form=edit_notification_settings_form,
user=user,
title='Edit Profile'
title='User Settings'
)