2018-09-22 03:53:29 +02:00
{{ define "title"}}{{ t "page.settings.title" }}{{ end }}
2017-11-20 06:10:04 +01:00
{{ define "content"}}
< section class = "page-header" >
2018-09-22 03:53:29 +02:00
< h1 > {{ t "page.settings.title" }}< / h1 >
2019-11-18 02:26:47 +01:00
{{ template "settings_menu" dict "user" .user }}
2017-11-20 06:10:04 +01:00
< / section >
< form method = "post" autocomplete = "off" action = "{{ route " updateSettings " } } " >
< input type = "hidden" name = "csrf" value = "{{ .csrf }}" >
{{ if .errorMessage }}
< div class = "alert alert-error" > {{ t .errorMessage }}< / div >
{{ end }}
2018-09-22 03:53:29 +02:00
< label for = "form-username" > {{ t "form.user.label.username" }}< / label >
2017-11-20 06:10:04 +01:00
< input type = "text" name = "username" id = "form-username" value = "{{ .form.Username }}" required >
2018-09-22 03:53:29 +02:00
< label for = "form-password" > {{ t "form.user.label.password" }}< / label >
2018-07-01 03:05:51 +02:00
< input type = "password" name = "password" id = "form-password" value = "{{ .form.Password }}" autocomplete = "new-password" >
2017-11-20 06:10:04 +01:00
2018-09-22 03:53:29 +02:00
< label for = "form-confirmation" > {{ t "form.user.label.confirmation" }}< / label >
2018-07-01 03:05:51 +02:00
< input type = "password" name = "confirmation" id = "form-confirmation" value = "{{ .form.Confirmation }}" autocomplete = "new-password" >
2017-11-20 06:10:04 +01:00
2018-09-22 03:53:29 +02:00
< label for = "form-language" > {{ t "form.prefs.label.language" }}< / label >
2017-11-20 06:10:04 +01:00
< select id = "form-language" name = "language" >
{{ range $key, $value := .languages }}
< option value = "{{ $key }}" { { if eq $ key $ . form . Language } } selected = "selected" { { end } } > {{ $value }}< / option >
{{ end }}
< / select >
2018-09-22 03:53:29 +02:00
< label for = "form-timezone" > {{ t "form.prefs.label.timezone" }}< / label >
2017-11-20 06:10:04 +01:00
< select id = "form-timezone" name = "timezone" >
{{ range $key, $value := .timezones }}
< option value = "{{ $key }}" { { if eq $ key $ . form . Timezone } } selected = "selected" { { end } } > {{ $value }}< / option >
{{ end }}
< / select >
2018-09-22 03:53:29 +02:00
< label for = "form-theme" > {{ t "form.prefs.label.theme" }}< / label >
2017-11-20 06:10:04 +01:00
< select id = "form-theme" name = "theme" >
{{ range $key, $value := .themes }}
< option value = "{{ $key }}" { { if eq $ key $ . form . Theme } } selected = "selected" { { end } } > {{ $value }}< / option >
{{ end }}
< / select >
2018-09-22 03:53:29 +02:00
< label for = "form-entry-direction" > {{ t "form.prefs.label.entry_sorting" }}< / label >
2017-12-03 02:04:01 +01:00
< select id = "form-entry-direction" name = "entry_direction" >
2018-09-22 03:53:29 +02:00
< option value = "asc" { { if eq " asc " $ . form . EntryDirection } } selected = "selected" { { end } } > {{ t "form.prefs.select.older_first" }}< / option >
< option value = "desc" { { if eq " desc " $ . form . EntryDirection } } selected = "selected" { { end } } > {{ t "form.prefs.select.recent_first" }}< / option >
2017-12-03 02:04:01 +01:00
< / select >
2019-04-29 03:20:46 +02:00
< label > < input type = "checkbox" name = "keyboard_shortcuts" value = "1" { { if . form . KeyboardShortcuts } } checked { { end } } > {{ t "form.prefs.label.keyboard_shortcuts" }}< / label >
2017-11-20 06:10:04 +01:00
< div class = "buttons" >
2018-09-22 03:53:29 +02:00
< button type = "submit" class = "button button-primary" data-label-loading = "{{ t " form . submit . saving " } } " > {{ t "action.update" }}< / button >
2017-11-20 06:10:04 +01:00
< / div >
< / form >
2017-11-25 01:09:10 +01:00
{{ if hasOAuth2Provider "google" }}
< div class = "panel" >
{{ if hasKey .user.Extra "google_id" }}
2018-09-22 03:53:29 +02:00
< a href = "{{ route " oauth2Unlink " " provider " " google " } } " > {{ t "page.settings.unlink_google_account" }}< / a >
2017-11-25 01:09:10 +01:00
{{ else }}
2018-09-22 03:53:29 +02:00
< a href = "{{ route " oauth2Redirect " " provider " " google " } } " > {{ t "page.settings.link_google_account" }}< / a >
2017-11-25 01:09:10 +01:00
{{ end }}
< / div >
{{ end }}
2017-11-20 06:10:04 +01:00
{{ end }}