blob: e537b147e2ff7e76f4976f75219a8d3dd2170de2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<!---
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="popup/popup.css"/>
</head>
<body>
<h1>Options</h1>
<form>
<div id="options">
<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
<input type="button" name="submit" type="submit" value="Force Submit">
</div>
</form>
<script src="popup/popup.js"></script>
</body>
</html>
!-->
|