-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathsignup.html
68 lines (66 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up Page</title>
<style>
body {
font-family: Arial, sans-serif;
background-color:hsl(38, 61%, 73%);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.login-container {
background-color:hsl(37, 46%, 84%);
padding: 30px;
border-radius: 13px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 400px;
height: 400px;
}
.login-container h1 {
margin-bottom: 20px;
color: #333;
}
.login-container input[type="text"],
.login-container input[type="email"],
.login-container input[type="confirm password"],
.login-container input[type="password"] {
width: 92%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 4px;
}
.login-container button {
width: 98%;
padding: 10px;
margin-top: 10px;
background-color: hsl(38, 72%, 37%);
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
}
.login-container button:hover {
background-color: hsla(210, 4%, 11%, 1);
}
</style>
</head>
<body>
<div class="login-container">
<h1 style="text-align: center; font-family: 'Courier New';">Sign Up</h1>
<form>
<input type="text" placeholder="Username" required>
<input type="Email" placeholder="Email" required>
<input type="password" placeholder="Password" required>
<input type="Confirm password" placeholder="Confirm Password" required>
<button type="submit">Sign Up</button>
</form>
</div>
</body>
</html>