Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions Reservation
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resy Signup</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: linear-gradient(135deg, #2e7d32, #1b5e20);
font-family: 'Arial', sans-serif;
}
.form-container {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
text-align: center;
width: 350px;
}
.form-container h2 {
color: #2e7d32;
}
.form-container p {
font-size: 14px;
color: gray;
}
input {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 16px;
}
.btn {
width: 100%;
background: #2e7d32;
color: white;
padding: 10px;
border: none;
border-radius: 6px;
font-size: 16px;
cursor: pointer;
transition: 0.3s;
}
.btn:hover {
background: #1b5e20;
}
</style>
</head>
<body>
<div class="form-container">
<h2>resy</h2>
<p>Please create an account to continue.</p>
<form>
<input type="text" placeholder="First Name" required>
<input type="text" placeholder="Last Name" required>
<input type="email" placeholder="Email Address" required>
<input type="password" placeholder="Password" required>
<button type="submit" class="btn">Create an account</button>
</form>
</div>
</body>
</html>
Loading