-
-
Notifications
You must be signed in to change notification settings - Fork 752
Expand file tree
/
Copy pathcontext.php
More file actions
28 lines (28 loc) · 920 Bytes
/
Copy pathcontext.php
File metadata and controls
28 lines (28 loc) · 920 Bytes
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
<html>
<body>
<div id="area1">
<label for="name1">Name</label>
<input type="text" id="name1" name="name" value="old1" />
<select name="age" id="age1">
<option value="child">below 13</option>
<option value="teenage">13-21</option>
<option value="adult">21-60</option>
</select>
<label for="file1">Avatar</label>
<input type="file" id="file1" name="avatar" />
<button type="button">Submit</button>
</div>
<div id="area2">
<label for="name2">Name</label>
<input type="text" id="name2" name="name" value="old2" />
<select name="age" id="age2">
<option value="child">below 13</option>
<option value="teenage">13-21</option>
<option value="adult">21-60</option>
</select>
<label for="file2">Avatar</label>
<input type="file" id="file2" name="avatar" />
<span class="unique-element">Only here</span>
</div>
</body>
</html>