This repository has been archived by the owner on Apr 29, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTorrentGeneratorMovieMode.html
85 lines (73 loc) · 3 KB
/
TorrentGeneratorMovieMode.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript">
(function (c, l, a, r, i, t, y) {
c[a] = c[a] || function () {
(c[a].q = c[a].q || []).push(arguments);
};
t = l.createElement(r);
t.async = true;
t.src = "https://www.clarity.ms/tag/" + i;
y = l.getElementsByTagName(r)[0];
y.parentNode.insertBefore(t, y);
})(window, document, "clarity", "script", "go9ad7tc31");
</script>
<meta charset="UTF-8">
<title>Torrent File Generator</title>
<link rel="stylesheet" href="CodeForTorrentFileGenerator/style.css">
<style>
body {
background-color: #9e75f0; /* Use a light purple color for the background */
}
</style>
</head>
<body>
<div class="container">
<h1>Torrent File Generator (Movie-Mode)</h1>
<form>
<button type="button" id="video-toggle-btn" onclick="toggleVideoEmbed()">Toggle Video Help</button>
<button type="button" id="normal-mode" onclick="redirectToNormalMode()">Normal Mode</button>
<script>
function redirectToNormalMode() {
window.location.href = 'TorrentGenerator.html';
}
</script>
<!--Name-->
<label for="name">Movie Name</label>
<input type="text" id="name" placeholder="Enter torrent name | EXP: Movie 1998 1080p">
<!--Host Link-->
<label for="torrent-hoster">Torrent Host Link</label>
<input type="text" id="torrent-hoster" placeholder="Enter torrent hoster | EXP: https://url.com/">
<!--Seeders at the time-->
<label for="torrent-hoster">Seeders at the time</label>
<input type="text" id="seeders" placeholder="Enter Seeders at the time | EXP: 69">
<!--Resolution-->
<label for="resolution">Resolution</label>
<textarea id="resolution" placeholder="Enter a Resolution type | EXP: 1080p/720p (NO CAP P)"></textarea>
<!--Photo-->
<label for="photo">Photo URL</label>
<textarea id="photo" placeholder="Enter a Photo url | EXP: https://img.bb/a0934v"></textarea>
<!--Description-->
<label for="description">Movie Description</label>
<textarea id="description" placeholder="Enter torrent description | EXP: Http is really confused what to put into this prompt"></textarea>
<!--Magnet-->
<label for="magnet-link">Magnet URL</label>
<input type="text" id="magnet-link" placeholder="Enter magnet link | EXP: magnet://">
<!--Torrent-->
<label for="torrent-link">.Torrent URL</label>
<input type="text" id="torrent-link" placeholder="Enter .torrent link | EXP:// https://torrents.thing/TFGT.torrent">
<!--Stream-->
<label for="stream">Stream URL</label>
<input type="text" id="stream" placeholder="Enter stream link | EXP: https://streamer.cum/movies/the-fnaf-movie.html">
<!--Buttons-->
<button type="button" id="copy-btn" onclick="copyButton()">Copy Button script</button>
<button type="button" id="generate-btn">Generate File</button>
</form>
</div>
<center><div id="video-container"></div></center>
<script src="CodeForTorrentFileGenerator/Movie-script.js"></script>
<center><h2><p>V:R1-Movie</p>Script by: HttpAnimations</h2></center>
</body>
</html>