blob: 3ce3fda432bd76794cbfadcc2fac9908566bc6b6 (
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
32
33
34
35
36
|
<!DOCTYPE html>
<html lang="en">
<head>
{% include "head.html" %}
<title>shrt – Create a New Link</title>
</head>
<body>
<div id="Body" class="Window Dialog">
{% include "nav.html" %}
<form action="{{ url_for("create-link") }}" method="post" id="LinkForm">
<table class="InputFields">
<tr>
<td><label for="shortcut">Shortcut</label></td>
<td><input type="text" name="shortcut" id="shortcut"
minlength="2" pattern="(\p{L}|\p{N}|_|-|\.)+"></td>
</tr>
<tr>
<td><label for="original_url">URL</label></td>
<td><input type="url" name="original_url" id="original_url" required></td>
</tr>
<tr>
<td></td>
<td>
<input type="checkbox" id="regexp" name="regexp">
<label for="regexp">Regexp</label>
</td>
</tr>
</table>
<div class="ButtonRow">
<input type="submit" value="Add link!">
</div>
</form>
{% include "footer.html" %}
</div>
</body>
</html>
|