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

22 lines
537 B
HTML
Raw Normal View History

2018-07-11 22:46:44 +02:00
{{define "user_settings"}}<!DOCTYPE html>
2020-01-17 20:32:21 +01:00
<html lang="en">
2018-07-11 22:46:44 +02:00
<head>
{{template "meta_tags" .Username}}
{{template "user_style" .}}
2020-01-17 20:32:21 +01:00
<script>var apiEndpoint = '{{.APIEndpoint}}';</script>
2018-07-11 22:46:44 +02:00
</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}}