-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.html
47 lines (45 loc) · 2.35 KB
/
settings.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MajorTom - Torhymne</title>
<link rel="stylesheet" href="/settings.css">
<script defer data-domain="euro-cga.netlify.app" src="https://plausible.io/js/script.js"></script>
</head>
<body onload="loadDefault()">
<div class="header">
<h1>Einstellungen</h1>
</div>
<div class="settings_cnt">
<div class="media_upload">
<div class="upload_item">
<label for="preset1"><h1>Torhymne:</h1></label>
<select id="preset1" onchange="toggleFileInput(this, 'file1')" class="selector">
<option value="/audio/MajorTom_stadium.mp3">Major Tom (Stadionversion)</option>
<option value="/audio/MajorTom_clear.mp3">Major Tom (Normal)</option>
<option value="none">eigene Datei (Upload)</option>
</select>
<input type="file" id="file1" name="file1" accept=".mp3, .wav, .ogg" style="display:none;">
<label for="file1" class="fileLabel" id="label1" style="display:none;">Datei auswählen</label>
</div>
<div class="upload_item">
<label for="preset2"><h1>Torschrei:</h1></label>
<select id="preset2" onchange="toggleFileInput(this, 'file2')" class="selector">
<option value="/audio/goalscream.mp3">Beispiel Torschrei</option>
<option value="none">eigene Datei (Upload)</option>
</select>
<input type="file" id="file2" name="file2" accept=".mp3, .wav, .ogg" style="display:none;">
<label for="file2" class="fileLabel" id="label2" style="display:none;">Datei auswählen</label>
</div>
</div>
</div>
<div class="footer">
<a href="https://github.com/CodeModeYT/EURO-CustomGoalAnthem">GitHub</a>
<button class="fbutton" style="vertical-align:middle" onclick="location.href = `https://www.buymeacoffee.com/codemodeyt`;"><span><a>Unterstütze dieses Projekt! </a></span></button>
<a href="https://github.com/CodeModeYT/EURO-CustomGoalAnthem/issues/new">Fehler melden</a>
</div>
<script src="/src/toggleMediaUpload.js"></script>
<script src="/src/selector.js"></script>
</body>
</html>