32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
{{ define "title" -}}
|
|
{{( pgettext "User Settings" "title" )}}
|
|
{{- end }}
|
|
|
|
{{ define "content" }}
|
|
<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>
|
|
{{- end }}
|