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" .}}
|
2019-12-17 19:28:30 +01:00
|
|
|
<h1>{{.Title}}</h1>
|
2019-09-17 23:38:40 +02:00
|
|
|
<div class="page_content"><div class="limit_width">
|
2019-12-17 19:28:30 +01:00
|
|
|
{{template "form" .Other.PasswordForm}}
|
|
|
|
{{template "form" .Other.EmailForm}}
|
|
|
|
{{template "form" .Other.UsernameForm}}
|
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}}
|