HTML
xxxxxxxxxx
1
<div class="card">
2
3
<h5 class="card-header info-color white-text text-center py-4">
4
<strong>Sign in</strong>
5
</h5>
6
7
<div class="card-body px-lg-5 pt-0">
8
9
<form class="md-form" style="color: #757575;">
10
11
<input type="email" id="materialLoginFormEmail" class="form-control">
12
<label for="materialLoginFormEmail">E-mail</label>
13
14
15
<input type="password" id="materialLoginFormPassword" class="form-control">
16
<label for="materialLoginFormPassword">Password</label>
17
18
19
<div class="d-flex align-items-center justify-content-between">
20
<div class="form-check">
21
<input type="checkbox" class="form-check-input" id="materialLoginFormRemember">
22
<label class="form-check-label" for="materialLoginFormRemember">Remember me</label>
23
</div>
24
<div>
25
<a href="">Forgot password?</a>
26
</div>
27
</div>
28
29
30
<button class="btn btn-outline-info btn-rounded btn-block my-4 waves-effect z-depth-0" type="submit">Sign in</button>
31
32
<div class="text-center">
33
<p>Not a member?
34
<a href="">Register</a>
35
</p>
36
37
<p>or sign in with:</p>
38
<a type="button" class="btn-floating btn-fb btn-sm">
39
<i class="fab fa-facebook-f"></i>
40
</a>
41
<a type="button" class="btn-floating btn-tw btn-sm">
42
<i class="fab fa-twitter"></i>
43
</a>
44
<a type="button" class="btn-floating btn-li btn-sm">
45
<i class="fab fa-linkedin-in"></i>
46
</a>
47
<a type="button" class="btn-floating btn-git btn-sm">
48
<i class="fab fa-github"></i>
49
</a>
50
</div>
51
</form>
52
</div>
53
</div>
CSS
1
1
JS
1
1
Console errors: 0