aboutsummaryrefslogtreecommitdiff
path: root/page/create.html
blob: 33fbe71c006ad78f27adbea72ae1c389b4cbb7d1 (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
<!DOCTYPE html>
<html>

<head>
  <title>trkt</title>
</head>

<body>
  <p> create link</p>

  <form action="/c" method="POST">
    <label for="url">Url:</label>
    <input required type="url" id="url" name="url">

    <br />

    <label for="id">ID (optional):</label>
    <input type="text" id="id" name="id">

    <br />

    <input type="submit" value="Submit">
  </form>
</body>

</html>