added login modal

This commit is contained in:
StockiP
2022-04-25 19:16:16 +02:00
parent 2324b1988a
commit 2304b723c5
4 changed files with 40 additions and 5 deletions

View File

@@ -0,0 +1,28 @@
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">MarmeladenLaden Login</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form>
<div class="mb-3">
<label class="form-label">Email Address</label>
<input type="text" class="form-control" id="username" name="username" placeholder="Username" />
</div>
<div class="mb-3">
<label class="form-label">Password</label>
<input type="password" class="form-control" id="password" name="password" placeholder="Password" />
</div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="rememberMe" />
<label class="form-check-label" for="rememberMe">Remember me</label>
</div>
<div class="modal-footer d-block">
<p class="float-start">Not yet registered? <a href="#">Sign Up</a></p>
<button type="submit" class="btn btn-success float-end">Login</button>
</div>
</form>
</div>
</div>
</div>