nagasurendra commited on
Commit
74957d4
·
verified ·
1 Parent(s): 626d2c5

Create signup.html

Browse files
Files changed (1) hide show
  1. templates/signup.html +30 -0
templates/signup.html ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Sign-Up Page</title>
7
+ <link rel="stylesheet" href="../static/css/styles.css">
8
+ </head>
9
+ <body>
10
+ <div class="container">
11
+ <h1>Create Your Account</h1>
12
+ <form id="signup-form">
13
+ <label for="name">Name</label>
14
+ <input type="text" id="name" name="name" placeholder="Enter your full name" required>
15
+
16
+ <label for="phone">Phone</label>
17
+ <input type="tel" id="phone" name="phone" placeholder="Enter your phone number" required>
18
+
19
+ <label for="email">Email</label>
20
+ <input type="email" id="email" name="email" placeholder="Enter your email" required>
21
+
22
+ <label for="password">Password</label>
23
+ <input type="password" id="password" name="password" placeholder="Enter a password" required>
24
+
25
+ <button type="submit">Sign Up</button>
26
+ </form>
27
+ <p>Already have an account? <a href="login.html">Login</a></p>
28
+ </div>
29
+ </body>
30
+ </html>