git.sophuwu.com > urlshort   
              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
             <!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="Enter a URL here" autocomplete="off">
        <input type="submit" value="Shorten">
    </form>
</body>
</html>