summaryrefslogtreecommitdiff
path: root/templates/account.html.ep
blob: 9c3a435c90ae1c45c84f21f7e7aaa2d6c4ec182b (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
<h1>Account</h1>
% my $acc = get_user_data();
<div class="row">
	<table class="striped">
		<tr>
			<th scope="row">Name</th>
			<td><%= $acc->{name} %></td>
		</tr>
		<tr>
			<th scope="row">Mail</th>
			<td><%= $acc->{email} %></td>
		</tr>
		<tr>
			<th scope="row">Registriert am</th>
			<td><%= $acc->{registered_at}->strftime('%d.%m.%Y %H:%M') %></td>
		</tr>
	</table>
</div>

<h1>Export</h1>

<div class="row">
	<div class="col s12">
		<ul>
			<li><a href="/a/export.json">Rohdaten</a> (Kein API-Ersatz, das Format kann sich jederzeit ändern)</li>
		</ul>
	</div>
</div>