summaryrefslogtreecommitdiff
path: root/project/templates/user/username.html
blob: 3850aa6e9678e176a4348e68516c952b1017ad12 (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 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 %}