{{ define "title" }}dodo: change password{{ end }} {{ define "main" }}

Change password

Signed in as {{ .Username }}.

{{ if or .GeneralError .PasswordErrors }}
{{ if .GeneralError }}

{{ .GeneralError }}

{{ end }} {{ if .PasswordErrors }}

Please correct the following errors:

    {{ range .PasswordErrors }}
  • {{ .Message }}
  • {{ end }}
{{ end }}
{{ end }}

Use at least 20 bytes, including an uppercase letter, lowercase letter, number, and an ASCII symbol or space.

Accepted ASCII symbols: !"#$%&'()*+,-./:;<=>?@[\]^_{|}~. ASCII space is also accepted.

{{ range $index, $error := .PasswordErrors }}

{{ $error.Message }}

{{ end }}
{{ end }}