-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSign up.php
More file actions
57 lines (45 loc) · 1.23 KB
/
Sign up.php
File metadata and controls
57 lines (45 loc) · 1.23 KB
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
57
<!DOCTYPE html>
<html lang="en">
<style>
h2{
font-size:22px;
font-family:sans-serif;
text-align:center;
text-decoration: underline;
}
fieldset{
text-alignment: center;
background-color: aqua;
margin:30px 40px;
}
.sub:hover{
background-color: lightgreen;
border-radius: 5px;
}
</style>
<body>
<h2>Sign up form</h2>
<form action="create.php " method="POST">
<fieldset>
<legend>Personal info</legend>
First name:<br>
<input type="text" name="Firstname">
<br>
Lastname:<br>
<input type="text" name="Lastname">
<br>
Email:<br>
<input type="text" name="email">
<br>
Password:<br>
<input type="password" name="password">
<br>
Gender:<br>
<input type="radio" name="gender" value="Male">Male
<input type="radio" name="gender" value="Female">Female
<br><br>
<input class="sub" type="submit" name="submit" value="Submit">
</fieldset>
</form>
</body>
</html>