mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2025-06-12 09:00:40 +00:00
Merge branch 'development' of gitlab.ub.uni-bielefeld.de:sfb1288inf/opaque into development
This commit is contained in:
@ -8,7 +8,7 @@
|
||||
<div class="col s12 m8">
|
||||
<div class="card">
|
||||
<div class="card-content">
|
||||
<form method="POST">
|
||||
<form action="{{ url_for('profile.profile_edit_user_settings') }}" method="POST">
|
||||
{{ edit_user_settings_form.hidden_tag() }}
|
||||
<div class="switch">
|
||||
<i class="material-icons prefix">brightness_3</i>
|
||||
@ -38,7 +38,7 @@
|
||||
</div>
|
||||
<div class="col s12 m8">
|
||||
<div class="card">
|
||||
<form method="POST">
|
||||
<form action="{{ url_for('profile.profile_change_password') }}" method="POST">
|
||||
<div class="card-content">
|
||||
{{ change_password_form.hidden_tag() }}
|
||||
<div class="input-field ">
|
||||
@ -79,20 +79,20 @@
|
||||
</div>
|
||||
<div class="col s12 m8">
|
||||
<div class="card">
|
||||
<form method="POST">
|
||||
<form action="{{ url_for('profile.profile_edit_user_info')}}" method="POST">
|
||||
<div class="card-content">
|
||||
{{ change_profile_form.hidden_tag() }}
|
||||
{{ edit_user_info_form.hidden_tag() }}
|
||||
<div class="input-field">
|
||||
<i class="material-icons prefix">mail</i>
|
||||
{{ change_profile_form.email() }}
|
||||
{{ change_profile_form.email.label }}
|
||||
{% for error in change_profile_form.email.errors %}
|
||||
{{ edit_user_info_form.email() }}
|
||||
{{ edit_user_info_form.email.label }}
|
||||
{% for error in edit_user_info_form.email.errors %}
|
||||
<span class="helper-text red-text">{{ error }}</span>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action right-align">
|
||||
{{ change_profile_form.submit(class='btn') }}
|
||||
{{ edit_user_info_form.submit(class='btn') }}
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user