-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
47 lines (40 loc) · 1.58 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
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Sign Up</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='style.css'>
<script src='main.js'></script>
</head>
<body>
<!--header section-->
<header class = "header">
<a href="index.html" ><img src="image/copylogo.png" alt="logo"/></a>
<nav class = "Navigation">
<ul>
<a href="index.html"><li>Home |</li></a>
<li>About |</li>
<li>Contact |</li>
<li>Invest With Us</li>
<input type="text" placeholder="Search"/>
</ul>
</nav>
</header>
<div class="signupsection">
<h1>Kindly Fill In Details <span>Below To SignUp</span></h1>
<div class="imgdisplay">
<img src="image/png1.png" />
<form method="POST" action="signup.php">
<input type="text" name= "firstname" placeholder="Enter Your First Name"/><br/><br/>
<input type="text" name= "lastname" placeholder="Enter Your Last Name"/><br/><br/>
<input type="text" name= "uid" placeholder="Enter Your User Name"/><br/><br/>
<input type="text" name= "email" placeholder="Enter Your Email Name"/><br/><br/>
<input type="password" name= "pwd" placeholder="Enter Your Password Name"/><br/><br/>
<button type="submit" name="submit">Sign Up</button>
</form>
</div>
</div>
</body>
</html>