29 lines
1009 B
HTML
29 lines
1009 B
HTML
<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> |