-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
41 lines (40 loc) · 1.5 KB
/
signup.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interactive Menu Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body style="background-color: #f5f5f5;">
<div id="header">
<h1>WELCOME TO THE PRODIGY INFOTECH</h1>
<div id="navbar">
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="help.html">Help/Support</a></li>
<li><a href="login.html">Login/SignUp</a></li>
</ul>
</div>
</div>
<div id="content" style="height: 100%;width: 100%;">
<div class="container">
<form class="login-form">
<h2>Signup Page</h2>
<input type="text" placeholder="Name" required>
<input type="email" placeholder="Email" required>
<input type="password" placeholder="Password" required>
<input type="password" placeholder="confirm Password" required>
<input type="phone" placeholder="Contact Number" required>
<br><br>
<button type="submit">Sign Up</button>
<p>Already have and account !! <a href="login.html">Login</a></p>
</form>
</div>
</div>
<script src="script.js"></script>
</body>
</html>