2015-04-28 03:24:02 +00:00
|
|
|
{% extends 'registration/registration_base.html' %}
|
2016-05-11 14:41:50 +00:00
|
|
|
|
2011-10-03 16:36:04 +00:00
|
|
|
{% block title %}Change User Data{% endblock %}
|
2011-11-19 00:50:47 +00:00
|
|
|
{% block doccontent %}
|
2012-04-25 02:20:10 +00:00
|
|
|
<h2>Changing Your Username</h2>
|
2011-10-03 16:36:04 +00:00
|
|
|
|
2012-01-13 21:24:34 +00:00
|
|
|
<p> If you change your username, the web address for your profile page will change as well.</p>
|
2012-04-25 02:20:10 +00:00
|
|
|
<div>
|
2012-01-13 21:24:34 +00:00
|
|
|
<p> <b>Your current username:</b> {{ user.username }}</p>
|
2012-03-09 18:15:30 +00:00
|
|
|
<form method="POST" action="#">
|
2011-10-03 16:36:04 +00:00
|
|
|
{% csrf_token %}
|
|
|
|
{{ form.as_p }}
|
2012-04-25 02:20:10 +00:00
|
|
|
<input type="submit" name="change_username" value="Change username" id="submit_username">
|
|
|
|
</form>
|
|
|
|
</div>
|
2013-03-13 00:45:09 +00:00
|
|
|
|
2012-10-15 04:16:56 +00:00
|
|
|
<div>
|
|
|
|
<h2>Other Account Tools</h2>
|
2013-03-13 01:25:39 +00:00
|
|
|
<ul>
|
2017-09-22 20:02:43 +00:00
|
|
|
<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>
|
2013-03-13 00:45:09 +00:00
|
|
|
</div>
|
2011-10-03 16:36:04 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|