{{ define "title" }}dodo: create account{{ end }} {{ define "main" }}

Create account

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

{{ .GeneralError }}

{{ end }} {{ if or .UsernameErrors .PasswordErrors }}

Please correct the following errors:

    {{ range .UsernameErrors }}
  • {{ .Message }}
  • {{ end }} {{ range .PasswordErrors }}
  • {{ .Message }}
  • {{ end }}
{{ end }}
{{ end }} {{ range $index, $error := .UsernameErrors }}

{{ $error.Message }}

{{ 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 }}