2025-02-17 07:02:47 +01:00
|
|
|
|
---
|
|
|
|
|
layout: examples
|
|
|
|
|
title: Signin Template
|
|
|
|
|
extra_css:
|
2025-02-17 07:08:06 +01:00
|
|
|
|
- "sign-in.css"
|
|
|
|
|
body_class: "d-flex align-items-center py-4 bg-body-tertiary"
|
2025-02-17 07:02:47 +01:00
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
<main class="form-signin w-100 m-auto">
|
|
|
|
|
<form>
|
|
|
|
|
<img class="mb-4" src="/docs/{{< param docs_version >}}/assets/brand/bootstrap-logo.svg" alt="" width="72" height="57">
|
|
|
|
|
<h1 class="h3 mb-3 fw-normal">Please sign in</h1>
|
|
|
|
|
|
|
|
|
|
<div class="form-floating">
|
|
|
|
|
<input type="email" class="form-control" id="floatingInput" placeholder="name@example.com">
|
|
|
|
|
<label for="floatingInput">Email address</label>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-floating">
|
|
|
|
|
<input type="password" class="form-control" id="floatingPassword" placeholder="Password">
|
|
|
|
|
<label for="floatingPassword">Password</label>
|
|
|
|
|
</div>
|
|
|
|
|
|
2025-02-17 07:08:06 +01:00
|
|
|
|
<div class="form-check text-start my-3">
|
|
|
|
|
<input class="form-check-input" type="checkbox" value="remember-me" id="flexCheckDefault">
|
|
|
|
|
<label class="form-check-label" for="flexCheckDefault">
|
|
|
|
|
Remember me
|
2025-02-17 07:02:47 +01:00
|
|
|
|
</label>
|
|
|
|
|
</div>
|
2025-02-17 07:08:06 +01:00
|
|
|
|
<button class="btn btn-primary w-100 py-2" type="submit">Sign in</button>
|
|
|
|
|
<p class="mt-5 mb-3 text-body-secondary">© 2017–{{< year >}}</p>
|
2025-02-17 07:02:47 +01:00
|
|
|
|
</form>
|
|
|
|
|
</main>
|