28 lines
No EOL
1.2 KiB
HTML
28 lines
No EOL
1.2 KiB
HTML
{% extends "base_short.html" %}
|
|
{% load i18n staticfiles bootstrap3 %}
|
|
|
|
{% block title %}
|
|
<title>Options for {{user}}</title>
|
|
{% endblock %}
|
|
|
|
|
|
{% block content %}
|
|
<div class="auth-container">
|
|
<div class="auth-bg"></div>
|
|
<div class="auth-center">
|
|
<div class="auth-content">
|
|
<div class="auth-box"><br><br>
|
|
<div class="text-center">
|
|
<h1 class="section-heading allcaps">{% trans "Welcome," %} {{user}}</h1><br><br>
|
|
<a class="btn choice-btn btn-block" href="{% url 'change_data' %}" role="button">Change your userdata</a><br>
|
|
<a class="btn choice-btn btn-block" href="{% url 'change_password' %}" role="button">Change your password</a><br>
|
|
<a class="btn btn-danger btn-block" href="{% url 'logout' %}" role="button">{% trans "Logout" %}</a><br><br>
|
|
<br><br><br><br>
|
|
<hr>
|
|
<a class="text-center" href="{% url 'account_delete' %}">Delete your account</a><br>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |