summaryrefslogtreecommitdiffstats
path: root/templates/devel/profile.html
blob: 608373562921fe3ff3b81247738948aba2acf581 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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 %}