blob: 0e101a8e6a49e46785afdde1270c4ababdaf2729 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{% extends "base.html" %}
{% block title %}Change Your Username{% endblock %}
{% block content %}
<h1>Change your username</h1>
<form action="{% url kiwipycon_username %}"
method="post">
<table class="kiwipycon-default">
<tr>
<td class="label">
<label for="id_username">New username:</label>
</td>
<td>
{{ form.username.errors }}
{{ form.username }}
</td>
</tr>
<tr>
<td></td>
<td>
<input class="button left"
type="submit"
value="Save username" />
</td>
</tr>
</table>
</form>
{% endblock %}
|