commit 4c0376e65347d6db152cdd2e2ea4208e6ff0f973
parent 80690d5b7a336dd6f73d561fc142a0ac3f385b3f
Author: Friedel Schön <[email protected]>
Date: Sat, 16 Apr 2022 15:05:51 +0200
added change-password to account
Diffstat:
6 files changed, 34 insertions(+), 4 deletions(-)
diff --git a/pgmles/forms.py b/pgmles/forms.py
@@ -32,6 +32,8 @@ class LoginForm(FlaskForm):
class UpdateAccountForm(FlaskForm):
username = StringField('Naam', validators=[ DataRequired(), Length(min=2, max=20) ])
email = StringField('E-Mail', validators=[ DataRequired(), Email() ])
+ password = PasswordField('Wachtwoord', validators=[])
+ confirm_password = PasswordField('Wachtwoord herhalen', validators=[ EqualTo('password') ])
picture = FileField('Profielfoto bewerken', validators=[ FileAllowed(['jpg', 'png']) ])
submit = SubmitField('Bewerken')
diff --git a/pgmles/routes.py b/pgmles/routes.py
@@ -96,11 +96,13 @@ def save_picture(form_picture):
def account():
form = UpdateAccountForm()
if form.validate_on_submit():
+ current_user.username = form.username.data
+ current_user.email = form.email.data
if form.picture.data:
picture_file = save_picture(form.picture.data)
current_user.image_file = picture_file
- current_user.username = form.username.data
- current_user.email = form.email.data
+ if form.password.data:
+ current_user.password = bcrypt.generate_password_hash(form.password.data).decode('utf-8')
db.session.commit()
flash('Uw profiel werd bewerkt!', 'success')
return redirect(url_for('account'))
diff --git a/pgmles/site.db b/pgmles/site.db
Binary files differ.
diff --git a/pgmles/templates/account.html b/pgmles/templates/account.html
@@ -40,6 +40,32 @@
{% endif %}
</div>
<div class="form-group">
+ {{ form.password.label(class="form-control-label") }}
+ {% if form.password.errors %}
+ {{ form.password(class="form-control form-control-lg is-invalid") }}
+ <div class="invalid-feedback">
+ {% for error in form.password.errors %}
+ <span>{{ error }}</span>
+ {% endfor %}
+ </div>
+ {% else %}
+ {{ form.password(class="form-control form-control-lg") }}
+ {% endif %}
+ </div>
+ <div class="form-group">
+ {{ form.confirm_password.label(class="form-control-label") }}
+ {% if form.confirm_password.errors %}
+ {{ form.confirm_password(class="form-control form-control-lg is-invalid") }}
+ <div class="invalid-feedback">
+ {% for error in form.confirm_password.errors %}
+ <span>{{ error }}</span>
+ {% endfor %}
+ </div>
+ {% else %}
+ {{ form.confirm_password(class="form-control form-control-lg") }}
+ {% endif %}
+ </div>
+ <div class="form-group">
{{ form.picture.label() }}
{{ form.picture(class="form-control-file") }}
{% if form.picture.errors %}
diff --git a/pgmles/templates/layout.html b/pgmles/templates/layout.html
@@ -61,7 +61,7 @@
<ul class="list-group">
<li class="list-group-item list-group-item-light"><a href="{{ url_for('course_overview') }}">Lesoverzicht</a></li>
{% if current_user.type == 'admin' %}
- <li class="list-group-item list-group-item-light"><a href="{{ url_for('admin') }}">Rechten bewerken</a></li>
+ <li class="list-group-item list-group-item-light"><a href="{{ url_for('admin') }}">Profielen bewerken</a></li>
{% endif %}
</ul>
</p>
diff --git a/pgmles/templates/login.html b/pgmles/templates/login.html
@@ -40,7 +40,7 @@
{{ form.submit(class="btn btn-outline-info") }}
</div>
<small class="text-muted ml-2">
- <a href="#">Wachtwoord vergeten?</a>
+ Wachtwoord vergeten? Neem contact met een administrator.
</small>
</form>
</div>