summaryrefslogtreecommitdiff
path: root/templates/changepass.tmpl
blob: 4171f36427c834eb85eeac7eccfbdf35fc215ce5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#def title: changepass
#def header: changepass
#extends templates.base
#def content
#set error = $error or ''
		<div class="error">$error</div>
		<form method="post" action="${root}c">
			<p>current password</p>
			<p><input type="password" id="oldpass" name="oldpass" /></p>
			<p>new password</p>
			<p><input type="password" id="password" name="password" /></p>
			<p>repeat new password</p>
			<p><input type="password" id="password2" name="password2" /></p>
			<p><input type="submit" value="Login" /></p>
		</form>
#end def