-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (48 loc) · 1.51 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
<!DOCTYPE html>
<html>
<head>
<title>Electron App</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Search for a Torrent</h1>
<div class="form-group">
<label for="providerSelect">Provider:</label>
<select id="providerSelect">
<option value="ThePirateBay">ThePirateBay</option>
<option value="Yts">Yts</option>
<option value="KickassTorrents">KickassTorrents</option>
<option value="Torrent9">Torrent9</option>
<option value="Torrentz2">Torrentz2</option>
<option value="Limetorrents">Limetorrents</option>
<option value="TorrentProject">TorrentProject</option>
<option value="1337x">1337x</option>
<option value="Rarbg">Rarbg</option>
<option value="Eztv">Eztv</option>
</select>
</div>
<div class="form-group">
<label for="torrentNameInput">Torrent Name:</label>
<input type="text" id="torrentNameInput" placeholder="Enter torrent name">
</div>
<button id="searchButton">Search</button>
<div id="results-container">
<table id="results" style="display: none;">
<thead>
<tr>
<th>Title</th>
<th>Size</th>
<th>Seeds</th>
<th>Peers</th>
<th>Magnet Link</th>
</tr>
</thead>
<tbody></tbody>
</table>
<div id="no-results" style="display: none;">No results found</div>
</div>
</div>
<script src="renderer.js"></script>
</body>
</html>