-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistration_page.html
114 lines (105 loc) · 3.54 KB
/
registration_page.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Login Form</title>
<link rel="stylesheet" href="./style/login_page.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Caveat:[email protected]&family=Martian+Mono:[email protected]&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap" rel="stylesheet">
<style>
body {
background-color: #f0f0f0;
font-family: 'Playfair Display', serif;
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.box {
background-color: #ffffff;
padding: 30px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header {
text-align: center;
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
}
.field {
margin-bottom: 15px;
}
label {
display: block;
font-weight: bold;
margin-bottom: 5px;
}
input[type="text"],
input[type="email"],
input[type="age"],
input[type="password"] {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
font-family: inherit;
}
.btn button {
width: 100%;
padding: 10px;
background-color: #4CAF50;
color: #ffffff;
border: none;
border-radius: 5px;
cursor: pointer;
font-family: inherit;
}
.links {
text-align: center;
margin-top: 15px;
}
.links a {
color: #4CAF50;
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<div class="box form-box">
<header>Sign Up</header>
<form class="Login" method="post" action="registration.php">
<div class="field input">
<label for="username">Username</label>
<input type="text" name="username" id="username" required autocomplete="off">
</div>
<div class="field input">
<label for="email">Email</label>
<input type="email" name="email" id="email" required autocomplete="off">
</div>
<div class="field input">
<label for="age">Age</label>
<input type="number" id="age" name="age">
</div>
<div class="field input">
<label for="password">Password</label>
<input type="password" name="password" id="password" required autocomplete="off">
</div>
<div class="field btn">
<button type="submit" name="submit">Submit</button>
</div>
</form>
<div class="links">
Already a member? <a href="./loginPage.html">Sign In</a>
</div>
<div class="links">
<a href="./index.html"><b><i>Go to Home Page</i></b></a>
</div>
</div>
</div>
</body>
</html>