blob: b5e2c842d9731394095af2eaa297759a39e6dd95 (
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
|
//- vim:ts=4:sw=4:
doctype html
html
head
include head
title Change profile text
style.
input, textarea { width: min(45rem,100%) }
body
include header
article
h1 Change profile text
form(method="post" action="/change-about")
p Name: #{user.name}
p Mail: #{user.mail}
p
textarea(
name="about"
rows=20
cols=80
maxlength=32000
autofocus
)
|
| #{about}
p
button(type="submit") Submit
|