express-message-board/views/login.ejs
ak d5bf0927a6 progress update
everything tested and functional except direct messages
2023-09-19 22:54:57 -07:00

51 lines
1.6 KiB
Text

<!DOCTYPE html>
<html>
<head>
<title>b0ard - Sign In</title>
<link rel="stylesheet" href="/styles/css/bootstrap.min.css" />
<link rel="stylesheet" href="/stylesheets/index.css" />
</head>
<body class="bg-dark text-light">
<% if (error) { %>
<p class="text-center bg-danger"><%= error %></p>
<% } %>
<div class="d-flex flex-column py-4 px-4 align-items-center">
<header>
<h1 class="logotext mb-4">b0ard</h1>
</header>
<h2 class="mb-4">Login</h2>
<form class="d-flex flex-column align-items-center w-50" method="post">
<div class="input-group mb-4" data-bs-theme="dark">
<span class="input-group-text" id="username-aria">Username:</span>
<input
type="text"
class="form-control"
aria-label="username"
aria-describedby="username-aria"
name="username"
/>
</div>
<div class="input-group mb-4" data-bs-theme="dark">
<span class="input-group-text" id="password-aria">Password:</span>
<input
type="password"
class="form-control"
aria-label="password"
aria-describedby="password-aria"
name="password"
/>
</div>
<button type="submit" class="btn btn-outline-light px-4 py-2">
Submit
</button>
</form>
<div class="pb-5"></div>
<div class="d-flex flex-column align-items-center">
<p class="mb-2">Don't have an account?</p>
<a href="/user/new" type="button" class="btn btn-success px-4">
New Account
</a>
</div>
</div>
</body>
</html>