This repository has been archived by the owner on Oct 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (54 loc) · 2.21 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
<!DOCTYPE html>
<html>
<head>
<title>luct.ml - A URL shortener for Luctisity</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body onload="reset()">
<header>
<center><img src="icon.png" width="180px"></center>
</header>
<main>
<h2 align="center">A URL shortener for Luctisity</h2>
<div class="container1" style="display:block; margin-left:auto; margin-right:auto;">
<h3 style="margin:6px;" align="center">Choose the required option, use the correct value and hit "Generate"!</h3>
<div class="container2">
<center>
<select id="selectType">
<option>Project ID</option>
<option>Username</option>
<option>Studio ID</option>
</select>
<input required id="idOrLinkThing">
<form><button onclick="generateLink()" type="button">Generate</button></form>
</center>
</div>
<h2 style="margin:6px;" align="center">So, what is this website?</h2>
<p align="center">luct.ml is a link shortener for the Luctisity/RSCServer website. You can use this tool to, for example, view a project on another computer, or view your profile instantly.</p>
<div class="container2" id="mail">
<center>
<img src="mail.png" width="300px">
<h3 style="margin:6px;" align="center">Eihill brought you a letter! It reads:</h3>
<input readonly id="generatedLink">
<button onclick="clip()" type="button">Copy to clipboard</button>
<label id="copied">Successfully copied!</label>
</center>
</div>
</div>
</main>
<footer><center>
<h2>Developed by:</h2>
<article style="display:flex; justify-content: center; flex-wrap:nowrap;">
<section style="margin-right:12px;">
<a href="http://host3958.itelit.pro/luctisity/users/Gohoski.php"><img src="gohoski.png" width="100px" height="100px"><br>Gohoski</a><br>
<label>Main dev, code,<br> luct.ml domain owner</label>
</section>
<section>
<a href="http://host3958.itelit.pro/luctisity/users/LuniFoxo.php"><img src="lunifoxo.png" width="100px" height="100px"><br>LuniFoxo</a><br>
<label>Designer, code</label>
</section>
</article>
</center></footer>
</body>
</html>