2018-11-05 19:24:55 +08:00
|
|
|
|
---
|
|
|
|
|
layout: examples
|
|
|
|
|
title: Signin Template
|
2019-01-09 00:33:28 +08:00
|
|
|
|
extra_css:
|
2022-10-06 17:06:33 +08:00
|
|
|
|
- "sign-in.css"
|
2018-11-05 19:24:55 +08:00
|
|
|
|
body_class: "text-center"
|
|
|
|
|
include_js: false
|
|
|
|
|
---
|
2018-01-15 08:06:52 +08:00
|
|
|
|
|
2022-02-24 02:31:18 +08:00
|
|
|
|
<main class="form-signin w-100 m-auto">
|
2020-09-10 17:39:29 +08:00
|
|
|
|
<form>
|
|
|
|
|
<img class="mb-4" src="/docs/{{< param docs_version >}}/assets/brand/bootstrap-logo.svg" alt="" width="72" height="57">
|
2020-11-01 01:27:30 +08:00
|
|
|
|
<h1 class="h3 mb-3 fw-normal">Please sign in</h1>
|
2021-03-23 04:59:14 +08:00
|
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
2020-09-10 17:39:29 +08:00
|
|
|
|
<div class="checkbox mb-3">
|
|
|
|
|
<label>
|
|
|
|
|
<input type="checkbox" value="remember-me"> Remember me
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
2020-11-17 22:00:45 +08:00
|
|
|
|
<button class="w-100 btn btn-lg btn-primary" type="submit">Sign in</button>
|
2023-01-17 07:55:28 +08:00
|
|
|
|
<p class="mt-5 mb-3 text-body-secondary">© 2017–{{< year >}}</p>
|
2020-09-10 17:39:29 +08:00
|
|
|
|
</form>
|
|
|
|
|
</main>
|