151 lines
No EOL
4.8 KiB
HTML
151 lines
No EOL
4.8 KiB
HTML
<html>
|
|
|
|
<head>
|
|
<link href="css/bootstrap.min.css" rel="stylesheet">
|
|
<script src="js/jquery.min.js" type="text/javascript"></script>
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
|
|
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
|
|
crossorigin="anonymous"></script>
|
|
|
|
<style>
|
|
.bd-placeholder-img {
|
|
font-size: 1.125rem;
|
|
text-anchor: middle;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.bd-placeholder-img-lg {
|
|
font-size: 3.5rem;
|
|
}
|
|
}
|
|
|
|
.modal-login {
|
|
color: #636363;
|
|
width: 350px;
|
|
}
|
|
|
|
.modal-login .modal-content {
|
|
padding: 20px;
|
|
border-radius: 5px;
|
|
border: none;
|
|
}
|
|
|
|
.modal-login .modal-header {
|
|
border-bottom: none;
|
|
position: relative;
|
|
justify-content: center;
|
|
}
|
|
|
|
.modal-login h4 {
|
|
text-align: center;
|
|
font-size: 26px;
|
|
}
|
|
|
|
.modal-login .form-group {
|
|
position: relative;
|
|
}
|
|
|
|
.modal-login i {
|
|
position: absolute;
|
|
left: 13px;
|
|
top: 11px;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.modal-login .form-control,
|
|
.modal-login .btn {
|
|
min-height: 40px;
|
|
border-radius: 3px;
|
|
transition: all 0.5s;
|
|
}
|
|
|
|
.modal-login .close {
|
|
position: absolute;
|
|
top: -5px;
|
|
right: -5px;
|
|
}
|
|
|
|
.modal-login .forgot-link {
|
|
color: #12b5e5;
|
|
float: right;
|
|
}
|
|
|
|
.modal-login .modal-footer {
|
|
color: #999;
|
|
border: none;
|
|
text-align: center;
|
|
border-radius: 5px;
|
|
font-size: 13px;
|
|
margin-top: -20px;
|
|
justify-content: center;
|
|
}
|
|
|
|
.modal-login .modal-footer a {
|
|
color: #12b5e5;
|
|
}
|
|
|
|
.trigger-btn {
|
|
display: inline-block;
|
|
margin: 100px auto;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<!-- Button trigger modal -->
|
|
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal">
|
|
Launch demo modal
|
|
</button>
|
|
|
|
<!-- Modal -->
|
|
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel"
|
|
aria-hidden="true">
|
|
<div class="modal-dialog modal-login" role="document">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body text-center">
|
|
<form class="form-signin">
|
|
<fieldset>
|
|
<img class="mb-4" src="img/icon.png" alt="" width="72" height="72">
|
|
<h1 class="h3 mb-3 font-weight-normal">Please sign in</h1>
|
|
<div class="form-group input-group">
|
|
<div class="input-group-prepend">
|
|
<div class="input-group-text"><span data-feather="user"></span></div>
|
|
</div>
|
|
<input type="text" class="form-control" id="inlineFormInputGroupUsername"
|
|
placeholder="Username">
|
|
</div>
|
|
<div class="form-group input-group">
|
|
<div class="input-group-prepend">
|
|
<div class="input-group-text"><span data-feather="lock"></span></div>
|
|
</div>
|
|
<input type="password" class="form-control" id="inlineFormInputGroupUsername"
|
|
placeholder="Password">
|
|
</div>
|
|
<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>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="js/feather.js"></script>
|
|
<script>
|
|
feather.replace()
|
|
</script>
|
|
</body>
|
|
|
|
</html> |