You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
3.0 KiB
85 lines
3.0 KiB
<!doctype html> |
|
<html> |
|
<head> |
|
<meta charset="utf-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
|
<meta name="description" content=""> |
|
<meta name="author" content=""> |
|
<link rel="icon" href="/docs/4.0/assets/img/favicons/favicon.ico"> |
|
|
|
<title>SignIn | Shield</title> |
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous"> |
|
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.5/dist/umd/popper.min.js" integrity="sha384-Xe+8cL9oJa6tN/veChSP7q+mnSPaj5Bcu9mPX5F5xIGE0DVittaqT5lorf0EI7Vk" crossorigin="anonymous"></script> |
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/js/bootstrap.min.js" integrity="sha384-kjU+l4N0Yf4ZOJErLsIcvOU2qSb74wXpOhqTvwVx3OElZRweTnQ6d31fXEoRD1Jy" crossorigin="anonymous"></script> |
|
</head> |
|
<body class="text-center" > |
|
<form method="POST" action="/" class="form-signin"> |
|
<img class="mb-4" src="https://getbootstrap.com/docs/4.0/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="Email" name="Email" class="form-control" placeholder="Email address" required autofocus> |
|
<label for="inputPassword" class="sr-only">Password</label> |
|
<input type="password" id="Password" name="Password" 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-2022</p> |
|
</form> |
|
</body> |
|
</html> |
|
|
|
<style> |
|
html, |
|
body { |
|
height: 100%; |
|
} |
|
|
|
body { |
|
display: -ms-flexbox; |
|
display: -webkit-box; |
|
display: flex; |
|
-ms-flex-align: center; |
|
-ms-flex-pack: center; |
|
-webkit-box-align: center; |
|
align-items: center; |
|
-webkit-box-pack: center; |
|
justify-content: center; |
|
padding-top: 40px; |
|
padding-bottom: 40px; |
|
background-color: #f5f5f5; |
|
} |
|
|
|
.form-signin { |
|
width: 100%; |
|
max-width: 330px; |
|
padding: 15px; |
|
margin: 0 auto; |
|
} |
|
.form-signin .checkbox { |
|
font-weight: 400; |
|
} |
|
.form-signin .form-control { |
|
position: relative; |
|
box-sizing: border-box; |
|
height: auto; |
|
padding: 10px; |
|
font-size: 16px; |
|
} |
|
.form-signin .form-control:focus { |
|
z-index: 2; |
|
} |
|
.form-signin input[type="email"] { |
|
margin-bottom: -1px; |
|
border-bottom-right-radius: 0; |
|
border-bottom-left-radius: 0; |
|
} |
|
.form-signin input[type="password"] { |
|
margin-bottom: 10px; |
|
border-top-left-radius: 0; |
|
border-top-right-radius: 0; |
|
} |
|
</style> |