-
Notifications
You must be signed in to change notification settings - Fork 0
/
HauDataPerson HTML
56 lines (52 loc) · 1.15 KB
/
HauDataPerson 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
<!DOCTYPE HTML>
<html>
<head>
<title>Say Hello to my Little friend</title>
</head>
<body>
<form action="action_page.php" method="get">
First name:<br>
<input type="text" name="firstname">
<br>
Last name:<br>
<input type="text" name="lastname">
<br>
Phone number:<br>
<input type="text" name="phonenumber">
<br>
Mobile Number:<br>
<input type="text" name="Mobilenumber">
<br>
Social Security Number:<br>
<input type="text" name="SocialsecurityNumber">
<br>
Bank Account Number:<br>
<input type="text" name="bankaccountnumber">
<br>
Empoyee ID:<br>
<input type="text" name="employeeID">
<br>
Date of Birth:<br>
<input type="text" name="dateofbirth">
<br>
Sex:<br>
<input type="radio" name="gender" value="male" checked> Male<br>
<input type="radio" name="gender" value="female"> Female<br>
<input type="radio" name="gender" value="other"> Other<br>
Address:<br>
<input type="text" name="address">
<br>
<br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>
<!DOCTYPE HTML>
<html>
<head>
<title>Say Hello to my Little friend</title>
</head>
<body>
Data have been submitted!!!
</body>
</html