summaryrefslogtreecommitdiff
path: root/pkg/webui/html/settings.html
blob: 4040b9bb44a50be76a9e10b48399e933ea76d358 (plain)
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
{{ define "main" }}
<main class="responsive">
  <form action="/settings" method="post">
    <fieldset>
      <div class="field middle-align">
        <nav>
          <div class="max">
            <h6>Dark Mode</h6>
          </div>
          <label class="switch icon">
            <input {{ if not .Settings.LightMode }} checked{{ end }}
                   name="dark-mode"
                   type="checkbox"
                   value="1" />
            <span>
              <i>dark_mode</i>
            </span>
          </label>
        </nav>
      </div>
      <button class="small-round" type="submit" value="login">Save</button>
    </fieldset>
  </form>
</main>
{{ end }}