mirror of
				https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
				synced 2025-11-03 20:02:47 +00:00 
			
		
		
		
	Rename account form.
This commit is contained in:
		@@ -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:
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user