-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
61 lines (61 loc) · 2.13 KB
/
form.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
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Submit your Profile</title>
</head>
<body>
<form action="/my-backend/profile" method="POST">
<table width="100%"; cellspacing="30px">
<tr>
<td colspan="2" style="border: 1px solid black;background-color: grey;">
<h2>Tell us about yourself</h2>
</td>
</tr>
<tr>
<td cospan="2">
<h4>Profile Infromation</h4>
</td>
</tr>
<tr>
<td>
<div>Last_name</div>
<input name="Last_name" type="text"style=" width: 100%";>
</td>
<td>
<div>First_name</div>
<input name="First_name" type="text" style="width: 100%">
</td>
</tr>
<tr>
<td colspan="2">
<span>Gender</span>
<input name="gender" type="text" type="radio" value="male"> male
<input name="gender" type="text" type="radio" value="female"> Female
</td>
</tr>
<table>
<tr>
<td>
<h4>Current Address</h4>
<select name="City" id="">
<option value="disable select">Province/City</option>
<option value="Phnom Penh">Phnom Penh</option>
<option value="Kompong Cham">Kompong Cham</option>
<option value="Preyveng">Preyveng</option>
</select>
</td>
<h4>Address</h4>
<textarea name="address" id="" cols="50" rows="5"></textarea>
</tr>
<tr>
<td>
<h4>Skill</h4>
</td>
</tr>
</table>
</form>
</body>
</html>