-
Notifications
You must be signed in to change notification settings - Fork 111
/
index.html
260 lines (258 loc) · 9.56 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
{% extends 'layout.html' %}
{% block body %}
<main>
<div class="container">
<form method="POST" enctype="multipart/form-data" class="main-form">
<!-- General Information -->
<div class="row">
<div class="left">
<h4>General Information</h4>
<p>Your email to send the ISO file and your custom distribution name.</p>
</div>
<div class="right">
<div class="input">
<label>Email address *</label>
<input type="email" name="email" pattern="^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)+$" required>
</div>
<div class="input">
<label>Name of your Distribution *</label>
<input type="text" pattern="[A-Za-z0-9\s]{1,20}" name="TRAVIS_TAG" required>
</div>
</div>
</div>
<!-- Browser Configuration -->
<div class="row">
<div class="left">
<h4>Browser Configuration</h4>
<p>Your distro's browser default homepage and search engine.</p>
</div>
<div class="right">
<div class="input">
<label>Browser HomePage</label>
<input type="url" pattern="^(http:\/\/www\.|https:\/\/www\.|http:\/\/|https:\/\/)?[a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,5}(:[0-9]{1,5})?(\/.*)?$" name="event_url">
</div>
<div class="input">
<label>Browser Search Engine</label>
<input type="url" pattern="^(http:\/\/www\.|https:\/\/www\.|http:\/\/|https:\/\/)?[a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,5}(:[0-9]{1,5})?(\/.*)?$" name="search_engine">
</div>
</div>
</div>
<!-- 64bit Support -->
<div class="row single">
<div class="left">
<h4>32-bit Support</h4>
<p>Does your distribution needs 32bit support? <br>Default is 64bit.</p>
</div>
<div class="right">
<div class="input toggle">
<span>No</span>
<span>
<input type="checkbox" id="switch" class="toggle" name="processor" value="i386">
<label for="switch">Toggle</label>
</span>
<span>Yes</span>
</div>
</div>
</div>
<!-- Theme -->
<div class="row">
<div class="left">
<h4>Theme</h4>
<p>Choose the default theme that you want.</p>
</div>
<div class="right">
<div class="input toggle">
<span>Light</span>
<span>
<input type="checkbox" name="theme" value="dark" class="toggle" id="theme">
<label for="theme">Toggle</label>
</span>
<span>Dark</span>
</div>
</div>
</div>
<!-- Packages -->
<div class="row">
<div class="left">
<h4>Packages</h4>
<p>Enable or disable system features in your system.</p>
</div>
<div class="right">
<div class="table">
<div class="line">
<span>Notification</span>
<div class="input toggle">
<input type="checkbox" id="notification" class="toggle" name="SWITCH_ON_notification" value="notification">
<label for="notification">Toggle</label>
</div>
</div>
<div class="line">
<span>Screensaver</span>
<div class="input toggle">
<input type="checkbox" id="screensaver" class="toggle" name="SWITCH_ON_screensaver" value="screensaver">
<label for="screensaver">Toggle</label>
</div>
</div>
<div class="line">
<span>Sleep Modus</span>
<div class="input toggle">
<input type="checkbox" id="sleep" class="toggle" name="SWITCH_ON_sleep" value="sleep">
<label for="sleep">Toggle</label>
</div>
</div>
<div class="line">
<span>System Sounds</span>
<div class="input toggle">
<input type="checkbox" id="sound" class="toggle" name="SWITCH_ON_sound" value="system-sound">
<label for="sound">Toggle</label>
</div>
</div>
<div class="line">
<span>Bookmarks</span>
<div class="input toggle">
<input type="checkbox" id="bookmarks" class="toggle" name="SWITCH_ON_bookmark" value="bookmarks">
<label for="bookmarks">Toggle</label>
</div>
</div>
<div class="line">
<span>Screen Dimming</span>
<div class="input toggle">
<input type="checkbox" id="screen_dimming" class="toggle" name="SWITCH_ON_dimming" value="screen-dimming">
<label for="screen_dimming">Toggle</label>
</div>
</div>
<div class="line">
<span>Power Management Saving Feature</span>
<div class="input toggle">
<input type="checkbox" id="power_management" class="toggle" name="SWITCH_ON_management" value="power-management">
<label for="power_management">Toggle</label>
</div>
</div>
<div class="line">
<span>Taskbar Autohide</span>
<div class="input toggle">
<input type="checkbox" id="taskbar_autohide" class="toggle" name="SWITCH_ON_autohide" value="taskbar-autohide">
<label for="taskbar_autohide">Toggle</label>
</div>
</div>
</div>
</div>
</div>
<!-- 3rd Party Softwares -->
<div class="row">
<div class="left">
<h4>3rd Party Software</h4>
<p>Select 3rd party softwares to be installed on your system.</p>
</div>
<div class="right">
<div class="input__less">
<label class="checkbox">
<input type="checkbox" value="chromium" name="INSTALL_chromium">
<span>Chromium</span>
</label>
</div>
<div class="input__less">
<label class="checkbox">
<input type="checkbox" value="firefox" name="INSTALL_firefox">
<span>Firefox</span>
</label>
</div>
<div class="input__less">
<label class="checkbox">
<input type="checkbox" value="hangout" name="INSTALL_hangout">
<span>Hangout</span>
</label>
</div>
<div class="input__less">
<label class="checkbox">
<input type="checkbox" value="vlc" name="INSTALL_vlc">
<span>VLC</span>
</label>
</div>
<div class="input__less">
<label class="checkbox">
<input type="checkbox" value="gimp" name="INSTALL_gimp">
<span>GIMP</span>
</label>
</div>
<div class="input__less">
<label class="checkbox">
<input type="checkbox" value="inkspace" name="INSTALL_inkspace">
<span>Inkscape</span>
</label>
</div>
<div class="input__less">
<label class="checkbox">
<input type="checkbox" value="office" name="INSTALL_office">
<span>LibreOffice</span>
</label>
</div>
<div class="input__less">
<label class="checkbox">
<input type="checkbox" value="git" name="INSTALL_git">
<span>Git</span>
</label>
</div>
<div class="input__less">
<label class="checkbox">
<input type="checkbox" value="nextcloud" name="INSTALL_nextcloud">
<span>NextCloud</span>
</label>
</div>
<div class="input__less">
<label class="checkbox">
<input type="checkbox" value="dropbox" name="INSTALL_dropbox">
<span>Dropbox</span>
</label>
</div>
</div>
</div>
<!-- Logo -->
<div class="row single">
<div class="left">
<h4>Logo</h4>
<p>Upload a Logo for your distribution</p>
</div>
<div class="right">
<div class="input custom__file__input">
<input type="file" hidden="hidden" name="desktop-logo" accept=".svg">
<span class="filename"></span>
<button type="button">Browse</button>
</div>
</div>
</div>
<!-- Wallpaper -->
<div class="row single">
<div class="left">
<h4>Wallpaper</h4>
<p>Upload a Wallpaper for your distribution</p>
</div>
<div class="right">
<div class="input custom__file__input">
<input type="file" hidden="hidden" name="desktop-wallpaper" accept="image/*">
<span class="filename"></span>
<button type="button">Browse</button>
</div>
</div>
</div>
<!-- Desktop files -->
<div class="row single">
<div class="left">
<h4>Desktop files</h4>
<p>Custom files to be kept on your desktop (archive).</p>
</div>
<div class="right">
<div class="input custom__file__input">
<input type="file" hidden="hidden" name="desktop-files" accept=".zip, .gz">
<span class="filename"></span>
<button type="button">Browse</button>
</div>
</div>
</div>
<div class="submit_button">
<button type="Submit" class="btn-dark">Build</button>
</div>
</form>
</div>
</main>
{% endblock %}