regluit/frontend/templates/registration/user_change_form.html

29 lines
944 B
HTML
Raw Normal View History

2015-04-28 03:24:02 +00:00
{% extends 'registration/registration_base.html' %}
2016-05-11 14:41:50 +00:00
{% block title %}Change User Data{% endblock %}
{% block doccontent %}
<h2>Changing Your Username</h2>
<p> If you change your username, the web address for your profile page will change as well.</p>
<div>
<p> <b>Your current username:</b> {{ user.username }}</p>
2012-03-09 18:15:30 +00:00
<form method="POST" action="#">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" name="change_username" value="Change username" id="submit_username">
</form>
</div>
<div>
<h2>Other Account Tools</h2>
2013-03-13 01:25:39 +00:00
<ul>
<li>Want to <a href="{% url 'libraryauth_password_change' %}">change your password</a>?</li>
2015-04-28 03:24:02 +00:00
<li>... or <a href="{% url 'manage_account' %}">manage your pledges and payment info</a>?</li>
<li>... or <a href="{% url 'email_change' %}">change your email address</a>?</li>
<li>... or <a href="{% url 'notification_notice_settings' %}">manage your contact preferences</a>?</li>
2013-03-13 01:25:39 +00:00
</ul>
</div>
{% endblock %}