-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
27 lines (27 loc) · 976 Bytes
/
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
<html>
<head>
<title>CSGO Lounge prices options</title>
<script type="text/javascript" src="jquery-2.1.3.min.js"></script>
<link rel="stylesheet" href="options.css">
</head>
<label style="margin-right: 10px" id="currencyLabel"></label>
<select id="currencySelect">
<option value="1">USD</option>
<option value="2">GBP</option>
<option value="3">EUR</option>
<option value="5">RUB</option>
<option value="7">BRL</option>
<option value="8">JPY</option>
<option value="9">SEK</option>
</select>
<br>
<label id="onlineStatusLabel"></label>
<input type="checkbox" id="onlineStatusCheckbox"></input>
<br>
<button id="save" style="margin-top: 10px">Save</button>
<p id="faq-header" style="text-align: center;"><strong>FAQ:(click to show)</strong></p>
<div id="faq-content" style="display: none">
</div>
<div id="saved" style="display: none;">Saved</div>
<script type="text/javascript" src="options.js"></script>
</html>