summaryrefslogtreecommitdiffstats
path: root/templates/devel/profile.html
blob: 0dde934931252e9796ba6eb5049728e2ebbde9f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base.html" %}
{% block title %}Arch Linux - Edit Profile{% endblock %}

{% block content %}
<div id="dev-edit-profile" class="box">

    <h2>Developer Profile</h2>

    <form id="edit-profile-form" method="post">{% csrf_token %}
        <fieldset>
            <legend>Username: <strong>{{ user.username }}</strong></legend>
            {{ form.as_p }}
        </fieldset>
        <p><label></label> <input title="Save changes" type="submit" value="Save" /></p>
    </form>

</div>
{% endblock %}