diff options
author | eliott <eliott@cactuswax.net> | 2007-11-03 03:45:10 -0400 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2007-11-03 03:45:10 -0400 |
commit | 39a548fd2629f3b6383990264b2e331b3aea99fb (patch) | |
tree | f68c3156dad5f7814473ceff2461679ddf11a2e8 /templates/devel/profile.html |
Initial import for public release...
Special Note
Prior to git import, approx 90% of the code was done by Judd Vinet. Thanks Judd!
Diffstat (limited to 'templates/devel/profile.html')
-rw-r--r-- | templates/devel/profile.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/templates/devel/profile.html b/templates/devel/profile.html new file mode 100644 index 00000000..60837356 --- /dev/null +++ b/templates/devel/profile.html @@ -0,0 +1,32 @@ +{% load validation %} +{% extends "base.html" %} + +{% block content %} + <div class="greybox"> + <h2 class="title">Developer Profile</h2> + {% if errors %} + {% print_errors errors %} + {% endif %} + <form method="post" action="."> + <table> + <tr> + <td>Username:</td> + <td><strong>{{ user.username }}</strong></td> + </tr><tr> + <td>Email Address:</td> + <td><input type="text" name="email" value="{{ user.email }}" size="30"></td> + </tr><tr> + <td>New Password:</td> + <td><input type="password" name="passwd" size="30"></td> + </tr><tr> + <td>Confirm Password:</td> + <td><input type="password" name="passwd2" size="30"></td> + </tr><tr> + <td colspan="2" align="right"> + <input type="submit" value=" Save "> + </td> + </tr> + </table> + </form> + </div> +{% endblock %} |