diff options
author | Dan McGee <dan@archlinux.org> | 2010-05-25 04:13:46 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-05-25 04:13:46 +0200 |
commit | e817efad53bc075ca94e6effd6eb3b6c838e2e63 (patch) | |
tree | 6bd4dae53aca75fef1f7480769ca2c42fe473e85 /templates/devel/profile.html | |
parent | b3e8354cdff4af8117feda0806a7c1104d5bb30e (diff) | |
parent | a24e503a63599fb5495fd85cba5806a34c695bb6 (diff) | |
download | archweb-e817efad53bc075ca94e6effd6eb3b6c838e2e63.tar.gz archweb-e817efad53bc075ca94e6effd6eb3b6c838e2e63.tar.xz |
Merge branch 'redesign'
Conflicts:
templates/public/download.html
Diffstat (limited to 'templates/devel/profile.html')
-rw-r--r-- | templates/devel/profile.html | 31 |
1 files changed, 14 insertions, 17 deletions
diff --git a/templates/devel/profile.html b/templates/devel/profile.html index 5b5a586..178a59a 100644 --- a/templates/devel/profile.html +++ b/templates/devel/profile.html @@ -1,21 +1,18 @@ {% extends "base.html" %} +{% block title %}Arch Linux - Edit Profile{% endblock %} {% block content %} - <div class="greybox"> - <h2 class="title">Developer Profile</h2> - <form method="post" action="."> - <table> - <tr> - <th>Username:</th> - <td><strong>{{ user.username }}</strong></td> - </tr> - {{form}} - <tr> - <td colspan="2" align="right"> - <input type="submit" value=" Save "> - </td> - </tr> - </table> - </form> - </div> +<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 %} |