summaryrefslogtreecommitdiff
path: root/utab/data/site.html
blob: 1406af9691ae24f40468a5577f3fd0a404811f20 (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
27
28
29
30
31
<!DOCTYPE html>
<!--Routes using this template:
/new/<url>
/edit/<url>
-->
<head>
  <title>utab - add new</title>
</head>
<body>
  <h2>%site_heading%</h2>
  <form action="/%action%" method="GET">
    <label for="url">URL:</label>
    <input class="form-input" name="url" type="url" value="%url%" autofocus />
    <br />
    <label for="title">Title:</label>
    <input class="form-input" name="title" type="text" value="%title%" />
    <br />
    <label for="favicon">Favicon:</label>
    <input
      class="form-input"
      name="favicon"
      type="url"
      value="%favicon_src%"
      placeholder="%favicon_placeholder%"
    />
    <br />
    <input class="form-button" type="submit" />
    <a href="/"><button class="form-button">Cancel</button></a>
  </form>
  <link rel="stylesheet" type="text/css" href="/css/index.css" />
</body>