diff options
Diffstat (limited to 'project/templates/user/username.html')
-rw-r--r-- | project/templates/user/username.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/project/templates/user/username.html b/project/templates/user/username.html new file mode 100644 index 0000000..3850aa6 --- /dev/null +++ b/project/templates/user/username.html @@ -0,0 +1,32 @@ +{% extends "base.html" %} + +{% block title %}Change Your Username{% endblock %} + +{% block content %} + <h1>Change your username</h1> + + <form action="{% url scipycon_username params.scope %}" + method="post"> + <table class="scipycon-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 %} + |