-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
137 lines (136 loc) · 7.73 KB
/
options.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>BlizzCon Ticket Grabber Settings</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" type="text/css" rel="stylesheet" />
<script src="js/jquery.js"></script>
</head>
<body>
<div class="container">
<div class="page-header">
<h1><img src="img/icon-48.png" alt="" /> BlizzCon Ticket Grabber</h1>
</div>
<div class="row">
<div class="col-xs-12">
<h3>General Information</h3>
<div class="form-group">
<label for="numTickets">Number of Tickets:</label>
<select name="numTickets" id="numTickets">
<option value="1" selected>1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>
</div>
<div class="form-group">
<label for="creditCard">Credit Card Number</label>
<input name="creditCard" id="creditCard" type="text" class="form-control" />
</div>
<div class="form-group">
<div class="row">
<div class="col-xs-6">
<label for="creditCardExp">Expiration</label>
<input name="creditCardExp" id="creditCardExp" type="text" class="form-control" />
</div>
<div class="col-xs-6">
<label for="creditCardCVV">CVV</label>
<input name="creditCardCVV" id="creditCardCVV" type="text" class="form-control" />
</div>
</div>
</div>
<div id="attendee_1">
<h3>Attendee #1</h3>
<div class="form-group hidden" id="use_for_all_wrapper">
<input name="use_for_all" id="use_for_all" type="checkbox" checked />
<label for="use_for_all">Use this info for all other attendees?</label>
</div>
<div class="form-group">
<label for="attendee_1_first_name">First Name</label>
<input class="form-control" name="attendee_1_first_name" id="attendee_1_first_name" type="text" />
</div>
<div class="form-group">
<label for="attendee_1_last_name">Last Name</label>
<input class="form-control" name="attendee_1_last_name" id="attendee_1_last_name" type="text" />
</div>
<div class="form-group">
<label for="attendee_1_email">Email</label>
<input class="form-control" name="attendee_1_email" id="attendee_1_email" type="text" />
</div>
<div class="form-group">
<label for="attendee_1_character_name">Character Name</label>
<input class="form-control" name="attendee_1_character_name" id="attendee_1_character_name" type="text" />
</div>
</div>
<div id="attendee_2" class="hidden">
<h3>Attendee #2</h3>
<div class="form-group">
<label for="attendee_2_first_name">First Name</label>
<input class="form-control" name="attendee_2_first_name" id="attendee_2_first_name" type="text" />
</div>
<div class="form-group">
<label for="attendee_2_last_name">Last Name</label>
<input class="form-control" name="attendee_2_last_name" id="attendee_2_last_name" type="text" />
</div>
<div class="form-group">
<label for="attendee_2_email">Email</label>
<input class="form-control" name="attendee_2_email" id="attendee_2_email" type="text" />
</div>
<div class="form-group">
<label for="attendee_2_character_name">Character Name</label>
<input class="form-control" name="attendee_2_character_name" id="attendee_2_character_name" type="text" />
</div>
</div>
<div id="attendee_3" class="hidden">
<h3>Attendee #3</h3>
<div class="form-group">
<label for="attendee_3_first_name">First Name</label>
<input class="form-control" name="attendee_3_first_name" id="attendee_3_first_name" type="text" />
</div>
<div class="form-group">
<label for="attendee_3_last_name">Last Name</label>
<input class="form-control" name="attendee_3_last_name" id="attendee_3_last_name" type="text" />
</div>
<div class="form-group">
<label for="attendee_3_email">Email</label>
<input class="form-control" name="attendee_3_email" id="attendee_3_email" type="text" />
</div>
<div class="form-group">
<label for="attendee_3_character_name">Character Name</label>
<input class="form-control" name="attendee_3_character_name" id="attendee_3_character_name" type="text" />
</div>
</div>
<div id="attendee_4" class="hidden">
<h3>Attendee #4</h3>
<div class="form-group">
<label for="attendee_4_first_name">First Name</label>
<input class="form-control" name="attendee_4_first_name" id="attendee_4_first_name" type="text" />
</div>
<div class="form-group">
<label for="attendee_4_last_name">Last Name</label>
<input class="form-control" name="attendee_4_last_name" id="attendee_4_last_name" type="text" />
</div>
<div class="form-group">
<label for="attendee_4_email">Email</label>
<input class="form-control" name="attendee_4_email" id="attendee_4_email" type="text" />
</div>
<div class="form-group">
<label for="attendee_4_character_name">Character Name</label>
<input class="form-control" name="attendee_4_character_name" id="attendee_4_character_name" type="text" />
</div>
</div>
<div class="form-group">
<button id="save">Save</button>
</div>
</div>
</div>
</div>
<script src="js/options.js"></script>
</body>
</html>