2018-07-11 22:46:44 +02:00
|
|
|
{{define "user_settings"}}<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
{{template "meta_tags" .Username}}
|
2019-02-18 13:37:41 +01:00
|
|
|
{{template "user_style" .}}
|
2018-07-11 22:46:44 +02:00
|
|
|
<script type="text/javascript">var apiEndpoint = '{{.APIEndpoint}}';</script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2019-09-17 23:38:40 +02:00
|
|
|
{{template "page_top" .}}
|
|
|
|
<h1>User configuration</h1>
|
|
|
|
<div class="page_content"><div class="limit_width">
|
|
|
|
|
2019-02-25 22:53:09 +01:00
|
|
|
<p>What would you like to do?</p>
|
|
|
|
<ul>
|
|
|
|
<li><a href="/user/change_password">Change my password</a></li>
|
|
|
|
</ul>
|
2018-07-11 22:46:44 +02:00
|
|
|
|
2019-09-17 23:38:40 +02:00
|
|
|
</div></div>
|
|
|
|
{{template "page_bottom" .}}
|
2018-07-11 22:46:44 +02:00
|
|
|
{{template "analytics"}}
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{{end}}
|