aboutsummaryrefslogtreecommitdiff
path: root/src/views/login.ejs
blob: 607d0990930c97e159a55d2b8ef4fa3656e64b53 (plain) (blame)
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>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Login</title>
</head>
<body>
<form class="login-form" id="login-form">
    <div>
        <label for="username">Username:</label>
        <input type="text" id="username" placeholder="Username">
    </div>
    <div>
        <label for="password">Password:</label>
        <input type="password" id="password" placeholder="Password">
    </div>
    <input type="submit" value="Login">
</form>
<script src="/js/login.js"></script>
</body>
</html>