summaryrefslogtreecommitdiff
path: root/views/profile.pug
blob: fc9b36b8547a0c72f3541c4bdbc357efc9a4ea07 (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
//- vim:ts=4:sw=4:
doctype html
html
	head
		include head
		title= SITE_NAME
	body
		include header
		article
			h1= SITE_NAME
			a(href="https://gravatar.com/"): img.avatar(src=avatar)

			p Welcome, #{user.name}!
			p Your mail address is #{user.mail}
			br(clear="left")

			p
			if user.notify
				| &#xbb; <a href="/unsubscribe">Disable mail notifications</a>
			else
				| &#xbb; <a href="/subscribe">Enable mail notifications</a>
			br
			| &#xbb;
			| Change
			| <a href="/change-password">password</a>,
			| <a href="/change-mail">mail address</a>,
			| <a href="/change-name">name</a>,
			| or <a href="/change-about">profile text</a>.
			br
			| &#xbb; <a href="/chat">Chat log</a>
			br
			| &#xbb; <a href="/logout">Logout</a>