aboutsummaryrefslogtreecommitdiff
path: root/templates/config.html
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2020-02-26 22:49:27 +0100
committerAlex Auvolat <alex@adnab.me>2020-02-26 22:49:27 +0100
commit8a5ed3f507d37c52e2a68a23ced6942cc752221d (patch)
tree14e85d2f6031d6b38ad34bb7b360df3918c1c9e4 /templates/config.html
parent775fc7b2172a632587e82cd44b9d7400ca4f4f74 (diff)
downloadeasybridge-8a5ed3f507d37c52e2a68a23ced6942cc752221d.tar.gz
easybridge-8a5ed3f507d37c52e2a68a23ced6942cc752221d.zip
Initial ability to configure accounts from web interface
Diffstat (limited to 'templates/config.html')
-rw-r--r--templates/config.html71
1 files changed, 71 insertions, 0 deletions
diff --git a/templates/config.html b/templates/config.html
new file mode 100644
index 0000000..2d64444
--- /dev/null
+++ b/templates/config.html
@@ -0,0 +1,71 @@
+{{define "title"}}Account configuration |{{end}}
+
+{{define "body"}}
+<div class="d-flex">
+ <h4>Configure account</h4>
+ <a class="ml-auto btn btn-info" href="/">Go back</a>
+</div>
+
+{{if .ErrorMessage}}
+ <div class="alert alert-danger mt-4">An error occurred.
+ <div style="font-size: 0.8em">{{ .ErrorMessage }}</div>
+ </div>
+{{end}}
+
+<form method="POST" class="mt-4">
+ <div class="form-group">
+ <label for="name">Account name:</label>
+ <input type="text" {{if .NameEditable}}{{else}}disabled="disabled"{{end}} id="name" name="name" class="form-control" value="{{ .Name }}" />
+ {{if .InvalidName}}
+ <div class="alert alert-warning">Invalid name (must not be empty)</div>
+ {{end}}
+ </div>
+ <div class="form-group">
+ <label>Protocol:</label>
+ <input type="text" disabled="disabled" class="form-control" value="{{ .Protocol }}" />
+ </div>
+ {{$config := .Config}}
+ {{$errors := .Errors}}
+ {{range $i, $schema := .Schema}}
+ <div class="form-group">
+ <label for="{{$schema.Name}}">{{$schema.Description}}</label>
+ {{if $schema.FixedValue}}
+ <input type="text"
+ disabled="disabled"
+ class="form-control"
+ name="{{$schema.Name}}"
+ id="{{$schema.Name}}"
+ value="{{index $config $schema.Name}}" />
+ {{else if $schema.IsBoolean}}
+ {{$value := index $config $schema.Name}}
+ <label for="{{$schema.Name}}-true">
+ <input type="radio" name="{{$schema.Name}}" id="{{$schema.Name}}-true" value="true" {{if eq $value "true"}}checked="checked"{{end}} />
+ Yes
+ </label>
+ <label for="{{$schema.Name}}-false">
+ <input type="radio" name="{{$schema.Name}}" id="{{$schema.Name}}-false" value="false" {{if eq $value "false"}}checked="checked"{{end}} />
+ No
+ </label>
+ {{else if $schema.IsPassword}}
+ <input type="password"
+ class="form-control"
+ name="{{$schema.Name}}"
+ id="{{$schema.Name}}"
+ value="{{index $config $schema.Name}}" />
+ {{else}}
+ <input type="text"
+ class="form-control"
+ name="{{$schema.Name}}"
+ id="{{$schema.Name}}"
+ value="{{index $config $schema.Name}}" />
+ {{end}}
+ {{$error := index $errors $schema.Name}}
+ {{if $error}}
+ <div class="alert alert-warning mt-2">{{$error}}</div>
+ {{end}}
+ </div>
+ {{end}}
+ <button type="submit" class="btn btn-primary">Save configuration</button>
+</form>
+
+{{end}}