-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsignUp.html
More file actions
123 lines (115 loc) · 2.73 KB
/
signUp.html
File metadata and controls
123 lines (115 loc) · 2.73 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!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" />
<title>Sign-Up</title>
<style>
*{
background-color: #f4f2e5;
}
#container{
display: grid;
width: 50%;
margin: auto;
font-family: Arial, Helvetica, sans-serif;
grid-template-columns: repeat(3,1fr);
grid-template-rows: repeat(10,100px);
grid-template-areas:
"t t t"
"l r r"
"l r r"
"l r r"
"l r r"
"l r r"
"l r r"
"b b b"
"b b b"
"b b b"
}
#top{
grid-area: t;
text-align: center;
}
#left{
grid-area: l;
}
#right{
grid-area: r;
}
#right>input{
width: 100%;
height: 45px;
}
#right>button{
width: 100%;
height: 50px;
border: none;
background-color: #e5cc76;
}
#bottom{
grid-area: b;
text-align: center;
}
#bottom>button{
width: 60%;
height: 50px;
}
</style>
</head>
<body>
<div id="container">
<div id="top">
<h1>Sign Up</h1>
<hr />
</div>
<div id="left">
<p>First Name*</p>
<br>
<p>Last Name*</p>
<br>
<p>Mobile Number*</p>
<br>
<p>Email Address*</p>
<br>
<p>Refferal Code</p>
<br>
<p>Password*</p>
<br>
<p>Confirm Password*</p>
</div>
<div id="right">
<input type="text" />
<br>
<br>
<input type="text" />
<br>
<br>
<input type="text" />
<br>
<br>
<input type="text" />
<br><br>
<input type="text" />
<br><br>
<input type="text" />
<br><br>
<input type="text" />
<br><br>
<button onclick="signin()">Submit</button>
<p>By creating an account, you agree to Lifestyle terms of use and privacy policy</p>
</div>
<div id="bottom">
<hr>
<h3>Already have an account?</h3>
<button onclick="signin()">Sign In</button>
</div>
</div>
</body>
</html>
<script>
function signin(){
window.location.href = "signIn.html"
}
</script>