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>
|
|
|
|
<div id='body' class="body">
|
|
|
|
{{template "menu" .}}
|
|
|
|
<h1>User configuration</h1>
|
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
|
|
|
|
|
|
|
{{template "footer"}}
|
|
|
|
</div>
|
|
|
|
{{template "analytics"}}
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{{end}}
|