aboutsummaryrefslogtreecommitdiff
path: root/src/templates/login.html
blob: 8557b726af4abf115b99263c8d54ccd47983609a (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
<!doctype html>
<html lang="en">

<head>
    <title>Login</title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <link rel="stylesheet" type="text/css" href="/css/styles.css">
</head>

<body>
    <div>
        <h1>Login</h1>
        {{> message}}
        <form method="post" action="/login">
            <input name="username" type="text" placeholder="Enter Username" required>
            <input type="password" placeholder="Enter Password" name="password" required>
            <input type="submit" value="Log in"> 
        </div>
    </div>
    <a href="/login/signup">or sign up</a>
</body>

</html>