-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathControls.hta
More file actions
executable file
·62 lines (58 loc) · 1.8 KB
/
Controls.hta
File metadata and controls
executable file
·62 lines (58 loc) · 1.8 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
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<title>Controls</title>
<HTA:APPLICATION
APPLICATIONNAME = "Controls"
ICON = "599CD.ico"
/>
</head>
<body>
<h1>Controls</h1>
<form action="" method="get" name="controls">
<label for="CustomerID">CustomerID</label>
<input type="hidden" id="CustomerID" name="CustomerID">
<br />
<label for="UserName">UserName:</label>
<input type="text" value="Alex" size="30" id="UserName" name="UserName">
<br />
<label for="Password">Password</label>
<input type="password" id="Password" name="Password">
<br />
<label for="MailingList">Mailing List</label>
<input type="checkbox" id="MailingList" name="MailingList">
<br />
<label for="CV">CV</label>
<input type="file" id="CV" name="CV">
<br />
<label for="courses">Courses</label>
<select id="courses" name="courses">
<optgroup label="Access">
<option value="AB1">Access Beginner 1</option>
<option value="AB2">Access Beginner 2</option>
</optgroup>
<optgroup label="Excel">
<option value="EB1">Excel Beginner 1</option>
<option value="EB2">Excel Beginner 2</option>
</optgroup>
</select>
<br />
<label for="info">Info: </label>
<textarea rows="5" cols="30" name="info" id="info">Lots of information.</textarea>
<br />
<fieldset>
<legend>Gender</legend>
<label for="Male">Male</label>
<input type="radio" name="radio" id="Male" value="Male">
<br />
<label for="Female">Female</label>
<input type="radio" name="radio" id="Female" value="Female">
</fieldset>
<br />
<input type="reset" value="Reset">
<input type="submit" value="Submit">
<label for="TestButton">TestButton</label>
<input type="button" id="TestButton" name="TestButton" value="Test Button">
</form>
</body>
</html>