This repository has been archived by the owner on Mar 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
93 lines (91 loc) · 3.93 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>OpenWrt Firmware</title>
<link rel="stylesheet" href="app.css" />
</head>
<body>
<div class="header">
<div id="currentLanguages">
<span onclick="firmwarewizard.changeLanguage('en')">en</span> |
<span onclick="firmwarewizard.changeLanguage('de')">de</span> |
<span onclick="firmwarewizard.changeLanguage('pl')">pl</span>
</div>
<div id="currentVersions"></div>
</div>
<div id="wizard" class="container">
<img src="./router.png" >
<div class="tab-content">
<div id="model-pane" style="display: block;">
<span class="firmwareTableLink tr-show-table" onclick="firmwarewizard.showFirmwareTable();">Show table</span>
<h1 class="tr-select-firmware">Select your image</h1>
<p class="tr-introduction">The firmware puts a Linux based operating system on your device. It allows you to install additional software.</p>
<select id="vendorselect" class="ulselect" onchange="firmwarewizard.setVendor(this.value)"></select>
<select id="modelselect" class="ulselect" style="display: none;" onchange="firmwarewizard.setModel(this.value)"></select>
<select id="revisionselect" class="ulselect" style="display: none;" onchange="firmwarewizard.setRevision(this.value)"></select>
</div>
<div id="type-pane">
<hr>
<p class="tr-introduction-additional">
If you have just bought the device, please choose the <em>first installation</em> image. If you have already installed LEDE/OpenWRT, use the <em>upgrade</em> images.
</p>
<div id="typeselect" class="radiogroup"></div>
</div>
<div id="branch-pane">
<hr>
<p id="releases" class="tr-different-versions">This firmware is available in the following versions:</p>
<ul>
<li id="stable">
<strong id="stable-label">Stable</strong><br />
<span class="tr-stable-description">Well tested, reliable and stable.</span><br />
</li>
<li id="unstable">
<strong id="unstable-label">Unstable</strong><br />
<span class="tr-unstable-description">Candidates for the next stable release.</span><br />
</li>
<li id="testing">
<strong id="testing-label">Testing</strong><br />
<span class="tr-testing-description">Untested, build automatically.</span><br />
</li>
</ul>
<p class="tr-available-versions">For the selected router model, the following images are available:</p>
<div id="branchselect"></div>
</div>
</div>
</div>
<div id="firmwareTable" class="container" style="display: none;">
<hr>
<span class="firmwareTableLink tr-back-to-selection" onclick="firmwarewizard.hideFirmwareTable();">
Back to the selection
</span>
<br>
<span class="firmwareTableLink">
<a id="firmware-source-dir" href=".." class="tr-list-files">List all files</a>
</span>
<a name="firmwareTable"></a>
<h1 class="tr-firmware">Firmware</h1>
<table class="table table-striped">
<thead>
<tr>
<th class="tr-manufacturer">Manufacturer</th>
<th class="tr-model">Modell</th>
<th class="tr-first-installation">First installation</th>
<th class="tr-upgrade">Upgrade</th>
</tr>
</thead>
<tbody id="firmwareTableBody">
<tr>
<td colspan="4" class="tr-loading">Loading...</td>
</tr>
</tbody>
</table>
</div>
<script src="devices.js"></script>
<script src="i18n.js"></script>
<script src="config.js"></script>
<script src="app.js"></script>
</body>
</html>