-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (52 loc) · 2.13 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/mdbootstrap.css">
<title>Document</title>
</head>
<body style="background-color: pink;">
<!-- Grid container -->
<div class="container my-5 h-100 mt-0">
<!--Grid row-->
<div class="row d-flex justify-content-center">
<!-- Mobile box -->
<!-- Navbar -->
<!-- Content -->
<div class="text-center mt-5">
<h1 class="strong fw-bold">Preggo</h1>
</div>
<div class="mt-5 p-4 text-center animated fadeIn">
<div class="md-form form-md">
<input type="email" id="email-input" class="form-control form-control-lg text-black">
<label for="email-input">E-mail</label>
</div>
<div class="md-form form-md">
<input type="password" id="password-input" class="form-control form-control-lg text-black">
<label for="password-input">Password</label>
</div>
<a href="">Forgot password?</a>
<!-- Sign in button -->
<a href="homescreen.html">
<button class="btn btn-outline-white btn-rounded btn-block my-4 waves-light z-depth-0" type="submit">Sign
in</button></a>
<!-- Sign in button -->
<button class="btn btn-outline-white btn-rounded btn-block my-4 waves-light z-depth-0" type="submit"><i class="fab fa-facebook-f mr-2"></i>Facebook</button>
<!-- Register -->
<p>Not a member?
<a href="register.html" class="font-weight-bold">Register</a>
</p>
</div>
<!-- Content -->
</div>
</div>
<!-- Mobile box -->
</div>
<!--Grid row-->
</div>
<!-- Grid container -->
</body>
</html>