xxxxxxxxxx
1
<div class="container my-5 py-5 z-depth-1">
2
3
4
<!--Section: Content-->
5
<section class="px-md-5 mx-md-5 text-center text-lg-left dark-grey-text">
6
7
8
<!--Grid row-->
9
<div class="row d-flex justify-content-center">
10
11
<!--Grid column-->
12
<div class="col-md-6">
13
14
<!-- Default form register -->
15
<form class="text-center" action="#!">
16
17
<p class="h4 mb-4">Sign up</p>
18
19
<div class="form-row mb-4">
20
<div class="col">
21
<!-- First name -->
22
<input type="text" id="defaultRegisterFormFirstName" class="form-control" placeholder="First name">
23
</div>
24
<div class="col">
25
<!-- Last name -->
26
<input type="text" id="defaultRegisterFormLastName" class="form-control" placeholder="Last name">
27
</div>
28
</div>
29
30
<!-- E-mail -->
31
<input type="email" id="defaultRegisterFormEmail" class="form-control mb-4" placeholder="E-mail">
32
33
<!-- Password -->
34
<input type="password" id="defaultRegisterFormPassword" class="form-control" placeholder="Password"
35
aria-describedby="defaultRegisterFormPasswordHelpBlock">
36
<small id="defaultRegisterFormPasswordHelpBlock" class="form-text text-muted mb-4">
37
At least 8 characters and 1 digit
38
</small>
39
40
<!-- Phone number -->
41
<input type="number" id="defaultRegisterPhonePassword" class="form-control" placeholder="Phone number"
42
aria-describedby="defaultRegisterFormPhoneHelpBlock">
43
<small id="defaultRegisterFormPhoneHelpBlock" class="form-text text-muted mb-4">
44
Optional - for two step authentication
45
</small>
46
47
<!-- Newsletter -->
48
<div class="custom-control custom-checkbox">
49
<input type="checkbox" class="custom-control-input" id="defaultRegisterFormNewsletter">
50
<label class="custom-control-label" for="defaultRegisterFormNewsletter">Subscribe to our
51
newsletter</label>
52
</div>
53
54
<!-- Sign up button -->
55
<button class="btn btn-info my-4 btn-block" type="submit">Sign in</button>
56
57
<!-- Social register -->
58
<p>or sign up with:</p>
59
60
<a href="#" class="mx-1" role="button"><i class="fab fa-facebook-f"></i></a>
61
<a href="#" class="mx-1" role="button"><i class="fab fa-twitter"></i></a>
62
<a href="#" class="mx-1" role="button"><i class="fab fa-linkedin-in"></i></a>
63
<a href="#" class="mx-1" role="button"><i class="fab fa-github"></i></a>
64
65
<hr>
66
67
<!-- Terms of service -->
68
<p>By clicking
69
<em>Sign up</em> you agree to our
70
<a href="" target="_blank">terms of service</a>
71
72
</form>
73
<!-- Default form register -->
74
75
</div>
76
<!--Grid column-->
77
78
</div>
79
<!--Grid row-->
80
81
82
</section>
83
<!--Section: Content-->
84
85
86
</div>
1
1
1
1
Console errors: 0