Skip to content

Commit 96514f4

Browse files
authored
Create Reservation
1 parent 9957281 commit 96514f4

File tree

1 file changed

+68
-0
lines changed

1 file changed

+68
-0
lines changed

Reservation

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Resy Signup</title>
7+
<style>
8+
body {
9+
display: flex;
10+
justify-content: center;
11+
align-items: center;
12+
height: 100vh;
13+
background: linear-gradient(135deg, #2e7d32, #1b5e20);
14+
font-family: 'Arial', sans-serif;
15+
}
16+
.form-container {
17+
background: white;
18+
padding: 30px;
19+
border-radius: 12px;
20+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
21+
text-align: center;
22+
width: 350px;
23+
}
24+
.form-container h2 {
25+
color: #2e7d32;
26+
}
27+
.form-container p {
28+
font-size: 14px;
29+
color: gray;
30+
}
31+
input {
32+
width: 100%;
33+
padding: 10px;
34+
margin: 10px 0;
35+
border: 1px solid #ccc;
36+
border-radius: 6px;
37+
font-size: 16px;
38+
}
39+
.btn {
40+
width: 100%;
41+
background: #2e7d32;
42+
color: white;
43+
padding: 10px;
44+
border: none;
45+
border-radius: 6px;
46+
font-size: 16px;
47+
cursor: pointer;
48+
transition: 0.3s;
49+
}
50+
.btn:hover {
51+
background: #1b5e20;
52+
}
53+
</style>
54+
</head>
55+
<body>
56+
<div class="form-container">
57+
<h2>resy</h2>
58+
<p>Please create an account to continue.</p>
59+
<form>
60+
<input type="text" placeholder="First Name" required>
61+
<input type="text" placeholder="Last Name" required>
62+
<input type="email" placeholder="Email Address" required>
63+
<input type="password" placeholder="Password" required>
64+
<button type="submit" class="btn">Create an account</button>
65+
</form>
66+
</div>
67+
</body>
68+
</html>

0 commit comments

Comments
 (0)