This repository has been archived by the owner on Sep 29, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
61 lines (60 loc) · 2.98 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta http-equiv="Content-Language" content="en">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"/>
<link href="start.css" type="text/css" rel="stylesheet">
<link href="app.css" type="text/css" rel="stylesheet">
<link rel="icon" href="img/lightcord.png" type="image/png">
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/marked/0.3.6/marked.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.15.0/moment.js"></script>
<script src="https://twemoji.maxcdn.com/2/twemoji.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fuse.js/2.6.1/fuse.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.10.0/styles/solarized-dark.min.css">
<link rel="stylesheet" href="https://cdn.rawgit.com/atomiks/tippyjs/c9134153/dist/tippy.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.10.0/highlight.min.js"></script>
<script src="https://cdn.rawgit.com/atomiks/tippyjs/c9134153/dist/tippy.min.js"></script>
<script src="js/discord.master.js"></script>
<script src="js/botconverter.js"></script>
<script src="js/filedrop.min.js"></script>
<script src="js/app.js"></script>
<title>Lightcord</title>
</head>
<body>
<div class="landing">
<div class="title">
<img src="img/lightcord.png"><br>
<h1>Lightcord</h1><sup>ALPHA</sup>
</div>
<sup><i>v<b>1.1.0</b> | using discord.js webpack version <b id="djs-version">...</b></sup></i><br>
<div class="error" style="display: none;">Invalid Token!</div>
<input placeholder="Bot Token" type="password"><button class="enter-token" onclick="App.start($('.landing input')[0].value);">Login</button>
<div class="continue-session" style="display: none;">Continue Session</div><br>
<b>Based on <a href="https://github.com/TeamCernodile/Botcord">Botcord</a> by <a href="https://github.com/TeamCernodile">Team Cernodile</a></b><br>
<p><i style="color: #f00">NOTICE:</i> Lightcord does not make requests to any 3rd party. Make sure this is from the official Lightcord site or that you trust the host of this page.</p>
<br>
<p>Made by <a href="https://twitter.com/SnazzahGuy">Snazzah</a></p>
</div>
<div class="modal" style="display: none;">
<div class="modal-inner">
</div>
</div>
<div class="upload-modal" style="display: none;">
<div class="upload-modal-inner">
<div class="upload-modal-outline">
<div class="upload-modal-block">
<h1>Drag & Drop</h1>
<p>You can add comments before uploading.</p>
<p>Hold Shift for an instant upload.</p>
</div>
</div>
</div>
</div>
<div class="loading"></div>
<script async src="js/start.js"></script>
</body>
</html>