summaryrefslogtreecommitdiff
path: root/templates/devel/profile.html
blob: 178a59aa57325c356533bf2ab777ce056af12e49 (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" action=".">
        <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 %}