-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode.html
78 lines (65 loc) · 3.04 KB
/
code.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="files/base.css">
<link rel="stylesheet" href="files/code/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Protest+Strike&display=swap" rel="stylesheet">
<title>Lumivoid login</title>
<link rel="icon" href="files/favicon.png">
</head>
<body>
<div class="container">
<div class="header-line">
<span id="aboutme-underline">
<a class="nav-item" href="/about-me.html">About</a>
</span>
<span id="steam-underline">
<a class="nav-item" href="https://steamcommunity.com/id/Bumer_32_yes/">Steam</a>
</span>
<span id="github-underline">
<a class="nav-item" href="https://github.com/Bumer-32">Github</a>
</span>
<span id="logo-underline">
<a class="nav-item" href="/index.html">
<img src="files/favicon.png" alt="Logo" id="logo">
</a>
</span>
<span id="spotify-underline">
<a class="nav-item" href="https://open.spotify.com/user/uqfc83jqfzvdy4nkqmx580p1m?si=c69bad30cc2643a2">Spotify</a>
</span>
<span id="discord-underline">
<a class="nav-item" href="#" id="discord-button-input">Discord</a>
</span>
<span id="code-underline">
<a class="nav-item" href="/code.html">Code</a>
</span>
</div>
<div class="footer">
<div id="nic-ua">
<a target="_blank" href="https://nic.ua/en/signup/hmrmykhz"><img alt="Powered by NIC.UA" src="https://nic.ua/assets/i/referral/btn-white-eng.png?version=v339"></a>
</div>
<div class="footer-text">
<p>2024 Bumer_32/lumivoid | <a href="https://github.com/Bumer-32/lumivoid/blob/main/LICENSE">License</a> | <a href="https://github.com/Bumer-32/lumivoid/">Project Github</a> | <a href="https://github.com/Bumer-32/lumivoid-servers">Server Github</a></p>
<p>Any other data are not public and you can't get access to it! Sorry! ¯\_(ツ)_/¯</p>
</div>
<div class="login-info">
<a href="/index.html" id="login-info">Username: not logined</a>
</div>
</div>
<div class="inputs">
<label>Enter content code</label>
<input type="text" name="Code" required minlength="1" maxlength="319" placeholder="Enter code">
<span id="go-button">
<input type="button" name="Go" value="Go">
</span>
<div class="spacer"></div>
<div class="loader" id="loader"></div>
</div>
</div>
<script type="module" src="files/base.js"></script>
<script type="module" src="files/code/script.js"></script>
</body>
</html>