-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
56 lines (51 loc) · 1.8 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
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>User Input Form</title>
<link rel="shortcut icon" type="image/x-icon" href="fire.img" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<style>
a:link {
color: white;
}
a:visited{
color:snow;
}
footer{
padding: 1px;
color: white;
background-color: red;
}
</style>
</head>
<body>
<header><div style="background-color:red;color:white;padding:5px;">
<center>Welcome to The Fire $urvey</center>
</div>
<div style="background-color:Black;color:white;padding:10px;">
<a href="index.html">Home</a> | <a href="login.html">Login</a> | <a href="signup.html">Sign up</a> | <a href="createpoll.html">Create Poll</a>
</div>
</header>
<h1>User Sign-Up Form</h1>
<form method="" action="">
<fieldset>
<legend>Personal Particular || Create a fire account and join thousands!</legend>
Name: <input type="text" name="name" /><br /><br />
UserName: <input type="text" name="username"><br> <br>
Password: <input type="password" name="password" /><br /><br />
Email:<input type="email" name="email" /><br /><br />
Gender: <input type="radio" name="gender" value="m" checked />Male
<input type="radio" name="gender" value="f" />Female
<br>
<br>
Age: <input type="number" name="age" /><br /><br />
</fieldset>
<input type="submit" value="SEND" />
<input type="reset" value="CLEAR" />
</form>
<div style="background-color:grey">
<h3>Have an account already? Login <a href="login.html">here</a>!!!!</h3>
</div>
</body>
</html>