forked from BetakyousoYT/Discord-Invitation-Spoofer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (27 loc) · 960 Bytes
/
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Discord Invitation Spoofer</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
</head>
<body>
<div id="particles-js"></div>
<div class="content">
<h2>Discord Invitation Spoofer</h2>
<div id="form-container">
<label for="discord-url">招待リンク</label>
<input type="text" id="discord-url" placeholder="Discord URL">
<label for="display-url">表示URL</label>
<input type="text" id="display-url" placeholder="表示 URL">
<button id="generate-btn">Gen</button>
</div>
<div id="result-container">
<input type="text" id="generated-url" readonly>
<button id="copy-btn">コピー</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>