aboutsummaryrefslogtreecommitdiff
path: root/templates/login.html
blob: 47435ac4de0d6dd693389daf787835dff8f58f72 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{{define "title"}}{{end}}

{{define "body"}}
<h4>Log in</h4>

<div class="alert alert-info">
  Log in using your Matrix credentials on {{ .MatrixDomain }}
</div>

<form method="POST">
  {{if .WrongPass}}
    <div class="alert alert-danger">Wrong password.</div>
  {{end}}
  {{if .ErrorMessage}}
    <div class="alert alert-danger">Unable to log in.
      <div style="font-size: 0.8em">{{ .ErrorMessage }}</div>
    </div>
  {{end}}
  <div class="form-group">
    <label for="username">Username:</label>
    <input type="text" name="username" id="username" class="form-control" value="{{ .Username }}" />
  </div>
  <div class="form-group">
    <label for="password">Password:</label>
    <input type="password" name="password" id="password" class="form-control" />
  </div>
  <button type="submit" class="btn btn-primary">Log in</button>
</form>

{{end}}