summaryrefslogtreecommitdiff
path: root/views/profile.pug
blob: ca6295c02f561f951350099dddc67f0c6ea75ccb (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
//- 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")

			if user.notify
				p <a href="/unsubscribe">Disable mail notifications</a>
			else
				p <a href="/subscribe">Enable mail notifications</a>

			p <a href="/change-password">Change password</a>
			p <a href="/change-mail">Change mail address</a>
			p <a href="/change-name">Change user name</a>
			p <a href="/change-about">Change profile text</a>

			p <a href="/chat">Chat log</a>

			p <a href="/logout">Logout</a>