blob: d244e9884b6ab4022c973e1c8923c0a1cb8ec512 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//- vim:ts=4:sw=4:
doctype html
html
head
include head
title Change mail address
body
include header
article
h1 Change mail address
if flash
p.error= flash
form(method="post" action="/change-mail")
p Name: #{user.name}
p Mail: #{user.mail}
p
label New mail address:
br
input(type="text" name="newmail" required)
p
button(type="submit") Change mail
|