0
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
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>URL Shortner</title>
</head>
<body>
<h1>URL Shortner</h1>
<form action="/" method="post">
<input type="text" name="url" placeholder="URL to shorten" autocomplete="off">
<input type="text" name="custom" placeholder="Custom URL (optional)" autocomplete="off">
<input type="password" name="key" placeholder="Password" autocomplete="off">
<input type="submit" value="Shorten">
</form>
</body>
</html>