File tree Expand file tree Collapse file tree 1 file changed +68
-0
lines changed Expand file tree Collapse file tree 1 file changed +68
-0
lines changed Original file line number Diff line number Diff line change
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>
You can’t perform that action at this time.
0 commit comments