blob: 2e24399f47fd9555e7154d2a85a2c1afc4bbbf54 (
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
25
26
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/style.css">
<title>bnbSO Login</title>
</head>
<body>
<div class="background"></div>
<div class="container">
<img src="img/logo.png" alt="logo" width="200">
<h1>Login</h1>
<form method="post" action="/login">
<label for="username">Username:</label>
<input type="text" id="username" name="username">
<label for="password">Current Password:</label>
<input type="password" id="password" name="password">
<button type="submit">Login</button>
</form>
<a href="#">Forgot Password</a>
<% if (typeof error !== 'undefined') { %>
<div class="error"><%= error %></div>
<% } %>
</body>
</html>
|