navigation and pages

This commit is contained in:
StockiP
2022-05-01 19:02:52 +02:00
parent 2b4612bf80
commit b5ca73f018
11 changed files with 244 additions and 220 deletions

29
components/login.html Normal file
View File

@@ -0,0 +1,29 @@
<div class="container maincontent">
<form>
<!-- Email input -->
<div class="form-outline mb-4">
<input type="email" id="emailLogin" class="form-control" />
<label class="form-label" for="email">Email address</label>
</div>
<!-- Password input -->
<div class="form-outline mb-4">
<input type="password" id="passwordLogin" class="form-control" />
<label class="form-label" for="password">Password</label>
</div>
<!-- 2 column grid layout for inline styling -->
<div class="row mb-4">
<div class="col d-flex justify-content-center">
<!-- Checkbox -->
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="rememberMe" checked />
<label class="form-check-label" for="rememberMe"> Remember me </label>
</div>
</div>
</div>
<!-- Submit button -->
<button type="button" class="btn btn-success btn-block mb-4 float-end">Sign in</button>
</form>
</div>