-
Notifications
You must be signed in to change notification settings - Fork 87
/
options.html
86 lines (78 loc) · 3.26 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>APK Downloader Options</title>
<link rel="stylesheet" href="options.css" media="all">
</head>
<body class="options">
<div id="options">
<h1>Options</h1>
<form>
<div id="info_form" class="hide-advanced">
<label>Email (used on Android Market)<br>
<span id="auth_email"></span>
</label>
<p>
<label>Android Device ID<br>
<span id="device_id"></span>
</label>
<p class="submit">
<input type="button" id="btn_logout" class="button-primary" value="Logout" tabindex="100">
</p>
<div id="advanced-settings">
<label for="slt_country">Sim Operator</label><br>
<select id="slt_country"></select>
<select id="slt_operator"></select><br>
<input type="button" id="btn_default" class="button-primary" value="Use default" title="Use default SIM operator" tabindex="100">
<input type="button" id="btn_save" class="button-primary" value="Save SIM operator" tabindex="100">
<br>
<label><input type="checkbox" id="skip-dl-checks"> Always show download button</label>
</div>
<!-- shown/hidden depends on hide-advanced/show-advanced class in parent -->
<button class="btn-advanced-settings expander">Show advanced settings...</button>
<button class="btn-advanced-settings collapser">Hide advanced settings...</button>
</div>
<div id="login_form">
<label for="user_email">Email (used on Android Market)</label><br>
<input type="email" id="user_email" class="input" value="" size="20" tabindex="10" placeholder="[email protected]">
<div class="help-msg">
<p>Enter your Android Market email account here, it must be activated before you can use it.</p>
</div>
<label for="user_password">Password</label><br>
<input type="password" id="user_password" class="input" value="" size="20" tabindex="20">
<div class="help-msg">
<p>This password is used once to retrieve an authentication
token and is not stored. Note: two factor authentication is
not supported, it is recommended to use <em>Application
specific passwords</em>.</p>
</div>
<label for="user_device_id">Android Device ID (16 hex characters)</label>
<input type="text" value="" maxlength="16" id="user_device_id" class="input"
size="20" tabindex="30" pattern="[0-9a-fA-F]{16}" placeholder="0123456789ABCDEF">
<div class="help-msg">
<p>Your Device ID can be found by dialing
<strong>*#*#TALK#*#*</strong> which will open the <em>GTalk
Service Monitor</em>. Search for a line starting with
<em>Device ID: android-....</em>. You must enter the ID
without <em>android-</em> prefix here.</p>
</div>
<p class="submit">
<input type="submit" id="btn_login" class="button-primary" value="Login" tabindex="100">
</p>
</div>
</form>
</div>
<footer>
<p>
Open-source, spyware-free <a href="https://lekensteyn.nl/apk-downloader/"
target="_blank">APK Downloader</a> by <a href="https://lekensteyn.nl/"
target="_blank">Lekensteyn</a> and others.
Issues can be reported to the <a
href="https://github.com/Lekensteyn/apk-downloader/" target="_blank">Github</a>
issue tracker.
</footer>
<script src="codes.js"></script>
<script src="options.js"></script>
</body>
</html>