express-members-only/views/createuser.ejs
2023-09-12 20:33:23 -07:00

66 lines
2.1 KiB
Text

<!DOCTYPE html>
<html>
<head>
<title>CVLT - New User</title>
<link rel="stylesheet" href="/styles/css/bootstrap.min.css" />
</head>
<body class="bg-dark text-light">
<div class="d-flex flex-column py-4 px-4 align-items-center">
<h1 class="mb-4">New User</h1>
<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="name">Full Name:</span>
<input
type="text"
class="form-control"
aria-label="name"
aria-describedby="name"
name="name"
/>
</div>
<div class="input-group mb-4" data-bs-theme="dark">
<span class="input-group-text" id="username">Username:</span>
<input
type="text"
class="form-control"
aria-label="username"
aria-describedby="username"
name="username"
/>
</div>
<div class="input-group mb-4" data-bs-theme="dark">
<span class="input-group-text" id="password">Password:</span>
<input
type="password"
class="form-control"
aria-label="password"
aria-describedby="password"
name="password"
/>
</div>
<div class="input-group mb-4" data-bs-theme="dark">
<span class="input-group-text" id="password_confirmation"
>Confirm Password:</span
>
<input
type="password"
class="form-control"
aria-label="confirm password"
aria-describedby="password_confirmation"
name="password_confirmation"
/>
</div>
<button type="submit" class="btn btn-outline-light px-4 py-2">
Submit
</button>
</form>
</div>
<footer
class="position-fixed bottom-0 border-light border-top w-100 py-2 d-flex justify-content-center bg-dark"
>
<a href="/" type="button" class="btn btn-outline-light px-4 py-1">
Back to Home
</a>
</footer>
</body>
</html>