-
Notifications
You must be signed in to change notification settings - Fork 0
/
SignUp.html
50 lines (43 loc) · 1.08 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
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<style type="text/css">
#div2{
text-align: center;
background-color: #CCFFFF;
height: 500px;
padding-top: 40px;
}
#p1{
text-decoration: underline;
color: black;
font-size: 40px;
font-style: italic;
}
#sub{
padding:5px;
background-color: #dcdcdc;
border: 1px solname #666;
color:#000;
text-decoration:none;
}
</style>
<body background="g.jpg">
<div name="div1">
<p name="p1" align="center">Sign Up For Your Health</p>
</div>
<form method="POST" action="submit1.php">
<div name="div2">
<p><input type="input" placeholder="Name" name="n"></p>
<p><input type="input" placeholder="Age" name="a"></p>
<p><input type="input" placeholder="gender" name="g"></p>
<p><input type="email" placeholder="E-mail" name="e" ></p>
<p><input type="input" placeholder="Username" name="u"></p>
<p><input type="password" placeholder="Password" name="pwd" ></p>
<p><button type="submit">Create Account</button></p>
</div>
</form>
</body>
</html>