Addded login page

This commit is contained in:
firefuture 2024-09-25 18:59:31 -05:00
parent ec6d0e833d
commit 61ced73e96

View file

@ -9,5 +9,26 @@
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</head>
<body>
<div class="d-flex p-2 justify-content-center">
<form action = "/handle-login" method = "post">
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text">We'll never share your email with anyone else.</div>
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1">
</div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Show Password</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
<div class="fs-6">
Don't have an account? Register <a href="register.html">here</a>.
</div>
</form>
</div>
</body>
</html>