forked from abhinavvarma7565/Hiippoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
46 lines (34 loc) · 921 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
form {
left:80%;
width:250px;
}
body{
background-image: url("bg.jpg");
}
</style>
</head>
<body>
<h1>SignUp</h1>
<form method="POST" name='registration' action="signup.php">
<ul><b>
<ul><label for="username">User id:</label></ul>
<ul><input type="text" name="username" required size="50" /></ul>
<ul><label for="password">Password:</label></ul>
<ul><input type="password" name="password" required size="50" /></ul>
<ul><label for="email">Email:</label></ul>
<ul><input type="text" name="email" required size="50" /></ul>
<ul><label>Education:</label></ul>
<ul><input type="text" name="education" required size="50" /></ul>
<ul><label>University:</label></ul>
<ul><input type="text" name="university" required size="50" /></ul></b>
<ul><input type="submit" name="submit" value="Submit" /></ul>
</ul>
</form>
</div>
</header>
</body>
</html>