{{define "title"}}Account configuration |{{end}} {{define "body"}}

Configure account

Go back
{{if .ErrorMessage}}
An error occurred.
{{ .ErrorMessage }}
{{end}}
{{if .InvalidName}}
Invalid name (must not be empty)
{{end}}
{{$config := .Config}} {{$errors := .Errors}} {{range $i, $schema := .Schema}}
{{if $schema.FixedValue}} {{else if $schema.IsBoolean}} {{$value := index $config $schema.Name}} {{else if $schema.IsPassword}} {{else if $schema.IsNumeric}} {{else}} {{end}} {{$error := index $errors $schema.Name}} {{if $error}}
{{$error}}
{{end}}
{{end}}
{{end}}