-
Notifications
You must be signed in to change notification settings - Fork 0
/
registration.html
109 lines (108 loc) · 3.64 KB
/
registration.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="./asset/styles/registration.css" />
<title>Login Page</title>
</head>
<body>
<section>
<div class="container-fluid login-page-wrapper p0">
<div class="row">
<div class="col-xl-6 col-lg-6 col-md-12 login-img-section">
</div>
<div class="col-xl-5 col-lg-5 col-md-10 login-form-section">
<form>
<div class="headings">
<h1>
Create
</h1>
<p>
Please log in to your account to <br />
continue with Menuire
</p>
</div>
<div class="form-group input-icons">
<i class="icon">
<img src="./asset/images/registration-man.png" width="15" />
</i>
<input
type="email"
class="form-control"
id="exampleInputEmail1"
aria-describedby="emailHelp"
placeholder="Enter email"
/>
</div>
<div class="form-group input-icons">
<i class="icon">
<img src="./asset/images/login-msg.png" width="15" />
</i>
<input
type="email"
class="form-control"
id="exampleInputEmail1"
aria-describedby="emailHelp"
placeholder="Enter email"
/>
</div>
<div class="form-group input-icons">
<i class="icon">
<img src="./asset/images/tel.png" width="15" />
</i>
<input
type="email"
class="form-control"
id="exampleInputEmail1"
aria-describedby="emailHelp"
placeholder="Enter email"
/>
</div>
<div class="form-group input-icons">
<i class="icon">
<img src="./asset/images/login-password.png" width="15" />
</i>
<input
type="email"
class="form-control"
id="exampleInputEmail1"
aria-describedby="emailHelp"
placeholder="Enter Password"
/>
</div>
<div class="form-check">
<input
type="checkbox"
class="form-check-input"
id="exampleCheck1"
/>
<label class="form-check-label" for="exampleCheck1"
>You have agreed terms and conditions & <br />
privacy policy</label
>
</div>
<br />
<div>
<button type="submit" class="btn btn-danger register-btn">
<a href="./breakFast.html"> REGISTER NOW </a>
</button>
</div>
<div></div>
</form>
</div>
</div>
</div>
</section>
</body>
</html>