mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
Rename account form.
This commit is contained in:
parent
3187cca1af
commit
7f76e7884f
@ -47,7 +47,7 @@ class PasswordResetRequestForm(FlaskForm):
|
||||
submit = SubmitField('Reset Password')
|
||||
|
||||
|
||||
class ChangeProfileForm(FlaskForm):
|
||||
class ChangeAccountForm(FlaskForm):
|
||||
email = StringField('Email', validators=[Optional(), Length(1, 64),
|
||||
Email()])
|
||||
username = StringField('Username', validators=[
|
||||
|
@ -2,7 +2,7 @@ from flask import flash, redirect, render_template, request, url_for
|
||||
from flask_login import current_user, login_required, login_user, logout_user
|
||||
from . import auth
|
||||
from .. import db
|
||||
from .forms import ChangeProfileForm, LoginForm, PasswordResetForm, PasswordResetRequestForm, RegistrationForm
|
||||
from .forms import ChangeAccountForm, LoginForm, PasswordResetForm, PasswordResetRequestForm, RegistrationForm
|
||||
from ..email import send_email
|
||||
from ..models import User
|
||||
|
||||
@ -20,7 +20,7 @@ def login():
|
||||
if next is None or not next.startswith('/'):
|
||||
next = url_for('main.index')
|
||||
return redirect(next)
|
||||
flash('Invalid username or password.')
|
||||
flash('<span class="red-text">Invalid username or password.</span>')
|
||||
return render_template('auth/login.html.j2', form=form, title='Log in')
|
||||
|
||||
|
||||
@ -128,7 +128,7 @@ def password_reset(token):
|
||||
@auth.route('/account', methods=['GET', 'POST'])
|
||||
@login_required
|
||||
def account():
|
||||
form = ChangeProfileForm()
|
||||
form = ChangeAccountForm()
|
||||
if form.validate_on_submit():
|
||||
flash('It is just a test, nothing changed.')
|
||||
if form.username.data:
|
||||
|
Loading…
Reference in New Issue
Block a user