-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponse.hpp
More file actions
101 lines (89 loc) · 2.09 KB
/
Copy pathresponse.hpp
File metadata and controls
101 lines (89 loc) · 2.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Signup Page</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: linear-gradient(135deg, #0074D9, #FF4136);
margin: 0;
}
.container {
background-color: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
width: 90%;
max-width: 400px;
}
h1 {
color: #333;
margin-bottom: 1rem;
}
h2 {
color: #0074D9;
margin-bottom: 1.5rem;
}
form {
display: flex;
flex-direction: column;
}
input[type="text"],
input[type="password"],
input[type="email"] {
padding: 0.75rem;
margin-bottom: 1rem;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 1rem;
}
input[type="submit"] {
padding: 0.75rem;
border: none;
border-radius: 5px;
background-color: #0074D9;
color: white;
font-size: 1rem;
cursor: pointer;
transition: background 0.3s;
}
input[type="submit"]:hover {
background-color: #005bb5;
}
.back-link {
display: inline-block;
margin-top: 1rem;
padding: 0.75rem;
background-color: #FF4136;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background 0.3s;
}
.back-link:hover {
background-color: #c0392b;
}
</style>
</head>
<body>
<div class="container">
<h1>UTaste</h1>
<section>
<h2>Signup</h2>
<form action="/signup" method="post">
<input name="username" type="text" placeholder="Username" required>
<input name="password" type="password" placeholder="Password" required>
<input type="submit" value="Signup">
</form>
<a class="back-link" href="/">Back</a>
</section>
</div>
</body>
</html>