summaryrefslogtreecommitdiff
path: root/src/templates/add.php
blob: a44c4d386ce3a68e7f0f23e8ac55861fbaa6a90e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!doctype html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>Bookmarks</title>
    </head>
    <body>
        <form action="/add" method="POST">
            <input type="text" name="url" maxlength="512" autofocus><br>
            <input type="text" name="title" maxlength="256" ><br>
            <input type="text" name="tag" maxlength="8" ><br>
            <button type="submit">Add</button> 
        </form>
    </body>
</html>