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-01-31 14:40:12 +00:00
|
|
|
<section class="dialog-content">
|
|
|
|
<h2>{{(pgettext "User Settings" "title")}}</h2>
|
|
|
|
<form method="POST">
|
|
|
|
<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 }}
|