-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (26 loc) · 897 Bytes
/
index.html
File metadata and controls
29 lines (26 loc) · 897 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Online Magnet Link Generator</title>
<link rel="stylesheet" type="text/css" href="magnet.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" crossorigin="anonymous"/>
<script src="magnet.js"></script>
</head>
<body>
<form name="form" onsubmit="update(); return false;">
<div class="formbox">
<div class="form-group">
<label for="hash">Info Hash:</label>
<input id="hash" class="form-control" onclick="sel_all(this);"/>
</div>
<div class="form-group">
<label for="link_text">Magnet Link:</label>
<input id="link_text" class="form-control" onclick="sel_all(this);"/>
</div>
<input class="btn btn-default" type="submit" value="Generate"/>
<a href="#" id="link" class="btn btn-default">Open Magnet</a>
</div>
</form>
</body>
</html>