summaryrefslogtreecommitdiff
path: root/web/index.hoon
blob: 4342d84307dfbb921dcec7809415cc7b1f9505e0 (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
26
/=  sigil-html  /web/sigil/sigil
|_  bowl:gall
++  favicon  %+
    weld  "<svg width='10' height='10' viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg'>"
          "<circle r='3.09' cx='5' cy='5' /></svg>"

++  $
=/  sigil  (sigil-html src)
;html
  ;head
    ;meta(charset "utf-8");
    ;meta(name "viewport", content "width=device-width, initial-scale=1, shrink-to-fit=no");
    ;link(rel "icon", type "image/svg+xml", href (weld "data:image/svg+xml;utf8," favicon));
  ==
  ;body
    ;main#login-page.white
      ;h1.tc:"Henlo"
      ;p:"You are logged"
      ;+  sigil
    ==
    ;form(action "/zodiac/logout", method "get")
      ;button(id "logout-button", type "submit"):"Logout"
    ==
  ==
==
--