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