Files
fnx_web/res/template/account/user_settings.html

22 lines
550 B
HTML
Raw Normal View History

2018-07-11 22:46:44 +02:00
{{define "user_settings"}}<!DOCTYPE html>
<html>
<head>
{{template "meta_tags" .Username}}
{{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}}