forked from ImranR98/apps.obtainium.imranr.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (55 loc) · 3.22 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 name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="stylesheet" href="/data/style.css">
<script src="script.js"></script>
<title>Obtainium Apps</title>
<link rel="icon" href="https://raw.githubusercontent.com/ImranR98/Obtainium/main/assets/graphics/icon_small.png">
<script defer data-domain="apps.obtainium.imranr.dev" src="https://plausible.imranr.dev/js/script.outbound-links.js"></script>
</head>
<body>
<section class="section">
<div class="columns">
<div class="column is-half">
<h1 class="title" id="title">Obtainium Apps</h1>
<p class="subtitle" style="text-decoration: underline;"><a href="https://github.com/ImranR98/apps.obtainium.imranr.dev" target="_blank" id="subtitle" rel="noopener">Crowdsourced App Configurations for Obtainium</a></p>
<a class="button is-link is-medium is-fullwidth has-text-white" href="#" onclick="toggleModal()" id="request-apps" role="button" title="Request Apps">Request Apps</a>
</div>
<div class="column is-half">
<div id="categories">
</div>
</div>
</div>
<div class="container" id="apps">
</div>
<noscript>
Enable JavaScript in your browser to see apps
</noscript>
</section>
<div class="modal" id="infoModal">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title" id="modal-title">Important – Please Read!</p>
<button class="delete" aria-label="close" onclick="toggleModal()"></button>
</header>
<section class="modal-card-body">
<p id="modal-body-1">This website is used for configs that people may find difficult to create. If the app you are requesting can be added to Obtainium in one click after entering it's source link (leaving all other settings as default), than the app IS NOT suitable for this website.</p>
<br>
<p id="modal-body-2">At a minimum, when making your request, you must provide a link to the app download page and any configs/things you have tried to get the app working so far. Please have a go at adding it yourself before requesting.</p>
<br>
<div class="field">
<input type="checkbox" id="accept-button" onclick="toggleContinueButton()">
<label for="accept-button">I have read and understand the above information and understand that if I have not followed the above instructions, my request may be ignored</label>
</div>
</section>
<footer class="modal-card-foot">
<a href="https://github.com/ImranR98/apps.obtainium.imranr.dev/discussions/new?category=app-requests" class="button is-primary is-hidden" id="modal-button" style="width: 100%; display: flex; justify-content: center; align-items: center;">Continue →</a>
</footer>
</div>
</div>
</body>
</html>