-
Notifications
You must be signed in to change notification settings - Fork 3
/
signup.html
154 lines (105 loc) · 2.93 KB
/
signup.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html lang="em">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>login </title>
<style>
.head {
width: 100%;
height: 80px;
border-bottom: 1px solid gainsboro;
;
}
#simplifying {
font-size: 25px;
color: grey;
margin-left: 15%;
margin-top: 20px;
}
#welcome {
font-size: 15px;
color: grey;
margin-left: 80%;
margin-top: -10%;
}
#login {
width: 100px;
height: 40px;
background-color: #02b875;
color: white;
}
#signup {
width: 100px;
height: 40px;
background-color: white;
color: black;
}
.nav {
width: 100%;
height: 40px;
border-bottom: 0.3px solid gainsboro;
;
margin-top: 0.5%
}
#home {
border: none;
margin-left: 10%;
color: black;
font-size: 20px;
background-color: white;
margin-top: 0.5%
}
#solutions {
border: none;
margin-left: 4%;
color: black;
font-size: 20px;
background-color: white;
}
.sign {
background-color: white;
width: 850px;
height: 500px;
border: 2px solid wheat;
margin-left: 150px;
margin-top: 50px;
}
#box1 {
width: 400px;
height: 30px;
margin-left: 50px;
margin-top: 50px;
}
#box2 {
width: 400px;
height: 30px;
margin-left: 75px;
margin-top: 40px;
}
</style>
<body>
<div class="head">
<label id="simplifying">Simplifying Mobility </label>
<label id="welcome" style="margin-top: -10px;">Welcome</label>
<button id="login" onclick="login()"><b>LOGIN</b></button>
<button id="signup" onclick="signup()"><b>SIGN UP</b></button>
</div>
<div class="nav">
<button onclick="home" id="home"><b>Home</b></button>
<button onclick="solutions" id="solutions">Solutions</button>
</div>
<div class="sign">
<h2 style="margin-left: 40px;">Sign up for your simplifying mobility account</h2>
<label style="margin-left: 40px;">Full name<span style="color: red;">*</span></label>
<input type="text" id="box1">
<br>
<label style="margin-left: 40px;">Email<span style="color: red;">*</span></label>
<input type="text" id="box2">
<div id="m" style="border-bottom: 1px solid gray; margin-top: 5%;">
</div>
<button
style="color: white; text-align:center; background-color: #02b875; margin-left: 100px; width: 200px; height: 35px; margin-top: 50px; ">REGISTER</button>
<button
style="color: black; text-align:center; background-color: whitesmoke; margin-left: 30px; width: 200px; height: 35px;margin-top: 50px;">CANCEL</button>
</div>
</body>
</html>