2023-01-31 12:07:17 +00:00
|
|
|
{{ define "title" -}}
|
2023-01-31 14:40:12 +00:00
|
|
|
{{( pgettext "User Settings" "title" )}}
|
2023-01-31 12:07:17 +00:00
|
|
|
{{- end }}
|
|
|
|
|
2023-01-22 20:41:50 +00:00
|
|
|
{{ define "content" }}
|
2023-02-02 10:39:34 +00:00
|
|
|
{{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.profileForm*/ -}}
|
2023-02-03 12:58:10 +00:00
|
|
|
<nav>
|
|
|
|
<p>
|
|
|
|
<a href="{{ companyURI "/" }}">{{( pgettext "Home" "title" )}}</a> /
|
|
|
|
<a>{{( pgettext "User Settings" "title" )}}</a>
|
|
|
|
</p>
|
|
|
|
</nav>
|
2023-01-31 14:40:12 +00:00
|
|
|
<section class="dialog-content">
|
|
|
|
<h2>{{(pgettext "User Settings" "title")}}</h2>
|
|
|
|
<form method="POST">
|
2023-02-02 10:39:34 +00:00
|
|
|
{{ csrfToken }}
|
2023-01-31 14:40:12 +00:00
|
|
|
<fieldset class="full-width">
|
|
|
|
<legend>{{( pgettext "User Access Data" "title" )}}</legend>
|
|
|
|
|
|
|
|
{{ template "input-field" .Name }}
|
|
|
|
{{ template "input-field" .Email }}
|
|
|
|
</fieldset>
|
|
|
|
<fieldset class="full-width">
|
|
|
|
<legend>{{( pgettext "Password Change" "title" )}}</legend>
|
|
|
|
|
|
|
|
{{ template "input-field" .Password }}
|
|
|
|
{{ template "input-field" .PasswordConfirm }}
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
<fieldset>
|
|
|
|
<legend id="language-legend">{{( pgettext "Language" "title" )}}</legend>
|
|
|
|
|
|
|
|
{{ template "select-field" .Language }}
|
|
|
|
|
|
|
|
<button type="submit">{{( pgettext "Save changes" "action" )}}</button>
|
|
|
|
</fieldset>
|
|
|
|
</form>
|
|
|
|
</section>
|
2023-01-22 20:41:50 +00:00
|
|
|
{{- end }}
|