summaryrefslogtreecommitdiffstats
path: root/templates/devel/profile.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/devel/profile.html')
-rw-r--r--templates/devel/profile.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/templates/devel/profile.html b/templates/devel/profile.html
new file mode 100644
index 0000000..6083735
--- /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 %}