|
|
@ -3,7 +3,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
{% block main_content %}
|
|
|
|
{% block main_content %}
|
|
|
|
<section class="manage-profile">
|
|
|
|
<section class="manage-profile">
|
|
|
|
<div class="pageform">
|
|
|
|
<div class="baseform">
|
|
|
|
<h3>Change user info</h3>
|
|
|
|
<h3>Change user info</h3>
|
|
|
|
<form action="{{ url_for('user.change_info') }}" method="post">
|
|
|
|
<form action="{{ url_for('user.change_info') }}" method="post">
|
|
|
|
{{ userinfo_form.csrf_token }}
|
|
|
|
{{ userinfo_form.csrf_token }}
|
|
|
@ -13,7 +13,7 @@
|
|
|
|
{{ userinfo_form.userinfo_submit() }}
|
|
|
|
{{ userinfo_form.userinfo_submit() }}
|
|
|
|
</form>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="pageform">
|
|
|
|
<div class="baseform">
|
|
|
|
<h3>Change password</h3>
|
|
|
|
<h3>Change password</h3>
|
|
|
|
<form action="{{ url_for('user.change_pass') }}" method="post">
|
|
|
|
<form action="{{ url_for('user.change_pass') }}" method="post">
|
|
|
|
{{ pass_form.csrf_token }}
|
|
|
|
{{ pass_form.csrf_token }}
|
|
|
@ -27,7 +27,7 @@
|
|
|
|
{{ pass_form.pass_submit() }}
|
|
|
|
{{ pass_form.pass_submit() }}
|
|
|
|
</form>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="pageform">
|
|
|
|
<div class="baseform">
|
|
|
|
<h3>Change e-mail address</h3>
|
|
|
|
<h3>Change e-mail address</h3>
|
|
|
|
<form action="{{ url_for('user.change_mail') }}" method="post">
|
|
|
|
<form action="{{ url_for('user.change_mail') }}" method="post">
|
|
|
|
{{ mail_form.csrf_token }}
|
|
|
|
{{ mail_form.csrf_token }}
|
|
|
@ -39,7 +39,7 @@
|
|
|
|
{{ mail_form.mail_submit() }}
|
|
|
|
{{ mail_form.mail_submit() }}
|
|
|
|
</form>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="pageform">
|
|
|
|
<div class="baseform">
|
|
|
|
<h3>Preferred rating</h3>
|
|
|
|
<h3>Preferred rating</h3>
|
|
|
|
<form action="{{ url_for('user.change_rating') }}" method="post">
|
|
|
|
<form action="{{ url_for('user.change_rating') }}" method="post">
|
|
|
|
{{ rating_form.csrf_token }}
|
|
|
|
{{ rating_form.csrf_token }}
|
|
|
@ -49,7 +49,7 @@
|
|
|
|
<noscript>{{ rating_form.rating_submit() }}</noscript>
|
|
|
|
<noscript>{{ rating_form.rating_submit() }}</noscript>
|
|
|
|
</form>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="pageform">
|
|
|
|
<div class="baseform">
|
|
|
|
<h3>Tag blacklist</h3>
|
|
|
|
<h3>Tag blacklist</h3>
|
|
|
|
<form action="{{ url_for('user.change_tagblacklist') }}" method="post">
|
|
|
|
<form action="{{ url_for('user.change_tagblacklist') }}" method="post">
|
|
|
|
{{ tags_form.csrf_token }}
|
|
|
|
{{ tags_form.csrf_token }}
|
|
|
@ -59,7 +59,7 @@
|
|
|
|
{{ tags_form.tags_submit() }}
|
|
|
|
{{ tags_form.tags_submit() }}
|
|
|
|
</form>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="pageform">
|
|
|
|
<div class="baseform">
|
|
|
|
<h3>Delete user data</h3>
|
|
|
|
<h3>Delete user data</h3>
|
|
|
|
<form action="{{ url_for('user.delete_data') }}" method="post">
|
|
|
|
<form action="{{ url_for('user.delete_data') }}" method="post">
|
|
|
|
{{ delete_form.csrf_token }}
|
|
|
|
{{ delete_form.csrf_token }}
|
|
|
|