mirror of https://github.com/twbs/bootstrap.git
27 lines
993 B
HTML
27 lines
993 B
HTML
---
|
|
layout: examples
|
|
title: Signin Template
|
|
extra_css:
|
|
- "signin.css"
|
|
body_class: "text-center"
|
|
include_js: false
|
|
---
|
|
|
|
<main class="form-signin">
|
|
<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>
|
|
<label for="inputEmail" class="visually-hidden">Email address</label>
|
|
<input type="email" id="inputEmail" class="form-control" placeholder="Email address" required autofocus>
|
|
<label for="inputPassword" class="visually-hidden">Password</label>
|
|
<input type="password" id="inputPassword" class="form-control" placeholder="Password" required>
|
|
<div class="checkbox mb-3">
|
|
<label>
|
|
<input type="checkbox" value="remember-me"> Remember me
|
|
</label>
|
|
</div>
|
|
<button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
|
|
<p class="mt-5 mb-3 text-muted">© 2017-{{< year >}}</p>
|
|
</form>
|
|
</main>
|