-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
127 lines (102 loc) · 4.23 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<html>
<head>
<link rel="stylesheet" href="./assets/css/style.css">
<script src="./assets/js/jquery-1.6.2.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Create your own Fossapps</title>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9222991553459658"
crossorigin="anonymous"></script>
<meta charset="UTF-8">
<meta name="keywords" content="foss, android, gapps, fossapps, fossdroid, free and open source, apps">
<meta name="description" content="Create your own Fossapps Package using a simple creator">
<meta name="author" content="Wacko1805">
<style>
</style>
</head>
<body>
<header class="header">
<a href="../" class="logo">Fossapps</a>
<input class="menu-btn" type="checkbox" id="menu-btn" />
<label class="menu-icon" for="menu-btn"><span class="navicon"></span></label>
<ul class="menu">
<li><a href="/apps.html">Apps</a></li>
<li><a href="https://github.com/wacko1805/Fossapps-creator">View Source</a></li>
</ul>
</header>
</div>
<div class="headerspace"></div>
<main>
<form class="form" id="form" action="https://jacsam9.dreamhosters.com/fossapps-creator-backend/" method="post">
<h1>
Create your own Fossapps Package
</h1>
<p><b>Fossapps Creater v.0.2-beta</b></p>
<p style="margin-bottom: 40px;">Choose what FOSS apps you want from below and they will be put into a flashable ZIP for Magisk.</p>
<h2>Read me: </h2>
<p>Fossapps is still alpha! Don't expect everything to work 100%. If you run into any issues, please report them on <a class="link" href="https://github.com/wacko1805/Fossapps-creator/issues">Github Issues</a> or the <a class="link" href="https://t.me/+qCEYwqMi0R9iNDc1">Fossapps Suport Group</a></p>
<h2>Requirements</h2>
<ul>
<li><p>Magisk 20 or higher</p></li>
<li><p>Android 8 or higher</p></li>
</ul>
<h2>Messages</h2>
<div id="messages"></div>
<h2>Phone App</h2>
<div id="phone"></div>
<h2>Calendar App</h2>
<div id="calendar"></div>
<h2>Browsers</h2>
<p><b>Warning!</b> Bromite and other Chromium based browser's are large files (100mb +) and may not work depending on your wifi stregnth!</p>
<div id="browsers"></div>
<h2>App stores</h2>
<div id="stores"></div>
<h2>Camera</h2>
<div id="camera"></div>
<h2>eMail App</h2>
<div id="email"></div>
<h2>Calculator</h2>
<div id="calculator"></div>
<h2>Music Apps</h2>
<div id="music"></div>
<h2>Youtube Apps</h2>
<div id="youtube"></div>
<h2>MicroG</h2>
<div id="microg"></div>
<h2>Launchers:</h2>
<p>Launchers are not available in Fossapps anymore due to complications with recents and gestures</p>
<input id="submit" type="submit" value="Create and Download">
</form>
<div id="overlay-back"></div>
<div id="overlay">
<div id="dvLoading">
<h2>Please wait</h2>
<p>Redirecting....</p>
<div class="main">
<div class="one"></div>
<div class="two"></div>
<div class="three"></div>
</div>
</div>
</div>
<p style="text-align: center;">Advertisment</p>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9222991553459658"
crossorigin="anonymous"></script>
<!-- Fossapps -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-9222991553459658"
data-ad-slot="9576239630"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<script>
document.getElementById("form").onsubmit=function() {
$('#dvLoading, #overlay, #overlay-back').fadeIn(500);
}
</script>
</main>
<script src="./assets/js/apps.js"></script>
</body>
</html>