This repository was archived by the owner on Nov 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (53 loc) · 2.06 KB
/
index.html
File metadata and controls
77 lines (53 loc) · 2.06 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Installr - Multi-App Installer</title>
<meta charset="utf-8">
<link href="style.css" rel="stylesheet"/>
<link rel="icon" type="image/x-icon" href="assets/favicon.svg">
</head>
<body>
<div id = 'header' class = 'flexbox'>
<img src = 'assets/favicon.svg' width = 60 height = 50>
<p style = 'padding-left: 10px;'>Installr</p>
</div>
<p style = 'margin-top: -40px;'>
Convenient Multi-Application Installer Tool. Build 2.1.
</p>
<p class = 'line'></p>
<div>
<p class = 'title'>Enter Your URL</p>
<p class = 'description'>Make sure your URL contains an 'https://' for it to submit properly.</p>
<textarea id = 'urlTextBox' rows = 1 placeholder = 'https://google.com/download'></textarea>
<div class = 'flexbox' style = 'margin-top: 10px;'>
<div id = 'submitButton' class = 'button'>
Submit Link
</div>
<div id = 'libraryButton' class = 'button' style = 'margin-left: 10px;'>
Link Library
</div>
</div>
<p class = 'line' style = 'margin-top: 20px;'></p>
<div>
<p id = 'linksListTitle' class = 'title'>Currently Mounted Links (0)</p>
<p class = 'description'>This is where all of your mounted links will show! Check it out!</p>
<textarea readonly id = 'linksBox' rows = 15 placeholder = 'No Links Are Loaded. Try Submitting Some!'></textarea>
<div class = 'flexbox' style = 'margin-top: 10px;'>
<div id = 'saveButton' class = 'button'>
Save Preset
</div>
<div id = 'loadButton' class = 'button' style = 'margin-left: 10px;'>
Load Preset
</div>
<div id = 'runButton' class = 'button' style = 'margin-left: 10px;'>
Run
</div>
</div>
<p class = 'line' style = 'margin-top: 20px;'></p>
<div id = 'footer'>
<p>This website is maintained by Rhet0rical on Github. Visit <a href = 'https://github.com/TheRhet0rical/installr'>Here</a>.</p>
</div>
<script src="script.js"></script>
<script src = 'https://api.rhet0rical.dev/scripts/credit-icon.js'></script>
</body>
</html>