This repository has been archived by the owner on May 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
170 lines (154 loc) · 4.27 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Register | FlyDreamAir</title>
<style>
* {
padding: 0;
margin: 0;
}
body, html {
background-color: #202020;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: 400;
font-size: large;
}
.title {
color: #FFFFFF;
font-size: 28px;
font-weight: bold;
}
.login-container {
width: 500px;
padding: 40px 58px 40px 58px;
position: fixed;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
background: #2B2B2B;
border: 1px solid #1D1D1D;
border-radius: 10px;
}
form {
display: flex;
flex-direction: column;
width: 500px;
}
.form-group {
margin-bottom: 15px;
}
input {
width: 100%;
height: 30px;
border: 1px solid #3A3A3A;
border-bottom: 1px solid #9F9F9F;
border-radius: 5px;
/*text-indent: 10px;*/
padding-inline: 10px;
background-color: #383838;
color: #FFFFFF;
}
input:hover {
background-color: #3D3D3D;
}
input:focus {
border-bottom: 2px solid #1D6394;
background-color: #222222;
}
input::placeholder {
color: #D2D2D2;
}
input:focus::placeholder {
color: #CDCDCD;
}
a {
font-size: 14px;
text-decoration: none;
color: #1D6394;
}
a:hover {
background-color: #373737;
border-radius: 5px;
}
input[type=submit] {
background-color: #1D6394;
height: 30px;
width: auto;
color: black;
padding-inline: 10px;
align-self: center;
border: 1px solid #2F6F9C;
border-bottom: 1px solid #195580;
border-radius: 5px;
cursor: default;
}
input[type=submit]:hover {
border: 1px solid #2F6991;
border-bottom: 1px solid #194F75;
background-color: #1D5C88;
}
input[type=submit]:focus {
background-color: #1D557C;
border: 1px solid #1D557C;
border-bottom: 1px solid #1D557C;
color: #0E2A3E;
}
.register-link {
color: #CCCCCC;
font-size: 14px;
text-align: center;
margin-top: 20px;
}
.alternative-login-text {
color: #CCCCCC;
font-size: 14px;
text-align: center;
margin: 10px;
}
.oauth {
border-radius: 5px;
}
</style>
</head>
<body>
<div class="login-container">
<h2 class="title">
<img src="images/icons/ic_fluent_airplane_20_regular.svg">
<!--<span>FlyDreamAir</span>-->
<a href="index.html" class="title">FlyDreamAir</a>
</h2>
<h3 class="title" style="font-size: 20px; margin-top: 20px; margin-bottom: 10px; color: #CCCCCC;">
<span>Sign up:</span>
</h3>
<form action="signup.php" method="POST">
<div class="form-group">
<input type="text" id="fName" name="fName" required placeholder="Given Name">
</div>
<div class="form-group">
<input type="text" id="lName" name="lName" required placeholder="Surname">
</div>
<div class="form-group">
<input type="email" id="email" name="email" required placeholder="Email Address">
</div>
<div class="form-group">
<input type="tel" id="pNum" name="pNum" required placeholder="Phone Number" maxlength="10">
</div>
<div class="form-group">
<input type="password" id="pWord" name="pWord" required placeholder="Password">
</div>
<div class="form-group" style="text-align: center; margin-bottom: 20px; margin-top: 10px;">
<input type="submit" value="Register">
<p class="register-link">Have an account? <a href="login.html" class="forgotpassword">Login Here</a></p>
</div>
<hr>
<p class="alternative-login-text">or sign up with</p>
<div style="text-align: center;">
<img class="oauth" src="images/icons/Logo - SIWA - Logo-only - Black.svg" style="width: 50px;";>
<img class="oauth" src="images/icons/branding_guideline_sample_lt_sq_sl.svg" style="width: 50px; object-fit: none;">
</div>
</form>
</div>
</body>
</html>