"Login screen pure Bootstrap 4.0"
Bootstrap 4.0.0 Snippet by Sentencia

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container h-80">
<div class="row align-items-center h-100">
<div class="col-3 mx-auto">
<div class="text-center">
<img id="profile-img" class="rounded-circle profile-img-card" src="https://i.imgur.com/6b6psnA.png" />
<p id="profile-name" class="profile-name-card"></p>
<form class="form-signin">
<input type="password" name="password" id="inputPassword" class="form-control form-group" placeholder="password" required autofocus>
<button class="btn btn-lg btn-primary btn-block btn-signin" type="submit">enter</button>
</form><!-- /form -->
</div>
</div>
</div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
body,html {
background-image: url('https://i.imgur.com/xhiRfL6.jpg');
height: 100%;
}
#profile-img {
height:180px;
}
.h-80 {
height: 80% !important;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: