mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-06-11 18:02:28 +03:00
b46f05a948
This commit includes all the needed workarounds and most changes from the main branch for everything to work, like: * removing empty lines in raw HTML that break output * read .browserslistrc, CSS variables from disk instead of duplicating it * using Hugo mounts * using Hugo for the docs CSS/JS * move ToC Sass code to a separate file while adapting it for Hugo Thus, this patch makes our npm scripts faster since lint runs on one step and there's no separate docs assets processing.
25 lines
942 B
HTML
25 lines
942 B
HTML
---
|
|
layout: examples
|
|
title: Signin Template
|
|
extra_css:
|
|
- "signin.css"
|
|
body_class: "text-center"
|
|
include_js: false
|
|
---
|
|
|
|
<form class="form-signin">
|
|
<img class="mb-4" src="/docs/{{< param docs_version >}}/assets/brand/bootstrap-solid.svg" alt="" width="72" height="72">
|
|
<h1 class="h3 mb-3 font-weight-normal">Please sign in</h1>
|
|
<label for="inputEmail" class="sr-only">Email address</label>
|
|
<input type="email" id="inputEmail" class="form-control" placeholder="Email address" required autofocus>
|
|
<label for="inputPassword" class="sr-only">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>
|