Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
5167849
header and structure change
4-dash Feb 15, 2026
997c2b6
fix
4-dash Feb 15, 2026
6f8e550
footer fix
4-dash Feb 15, 2026
132bf61
sidebar fixed
4-dash Feb 27, 2026
26cce86
main body flex box
4-dash Feb 27, 2026
6efd47d
header lang dropbox
4-dash Feb 27, 2026
797b6c9
minor fixes
4-dash Feb 28, 2026
d832201
progressbar done
4-dash Mar 1, 2026
4444a24
login/logout unified
4-dash Mar 1, 2026
f364297
header line added
4-dash Mar 1, 2026
6f3dc0d
minor improvements
4-dash Mar 3, 2026
f72090a
dashbaord flex fix
4-dash Mar 3, 2026
94ebb00
refactor header, footer and sidebar
4-dash Mar 22, 2026
ffef653
theme persist
4-dash Mar 22, 2026
6239a48
fix
4-dash Mar 22, 2026
18b692d
minor changes
4-dash Mar 23, 2026
6032ff3
veranstalter form redesign
4-dash Mar 26, 2026
1f70f7e
changed to new font
4-dash Mar 28, 2026
a3aad19
remove bootstrap and libre franklin
4-dash Mar 28, 2026
1f57281
directory change
4-dash Mar 28, 2026
857fdde
redesign main index
4-dash Mar 29, 2026
b31a70a
minor fix
4-dash Mar 29, 2026
e992e96
remove poper
4-dash Mar 29, 2026
9dc097e
sidebar size fix
4-dash Mar 29, 2026
edee54d
minor fix
4-dash Mar 29, 2026
6aefde2
new anchor color
4-dash Mar 29, 2026
2311ee4
logo fix
4-dash Mar 29, 2026
3706dbf
minor fix
4-dash Mar 29, 2026
1c9cd47
hedaer fix
4-dash Mar 29, 2026
15611ad
add custom buttons
4-dash Mar 29, 2026
ebd6fad
form button change
4-dash Mar 30, 2026
457549c
file input
4-dash Mar 30, 2026
32d1500
select and option
4-dash Mar 30, 2026
19e47fb
intern custom pages
4-dash Mar 31, 2026
bda4408
custom intern 2
4-dash Mar 31, 2026
7e5358b
custom jquery choosen
4-dash Apr 5, 2026
0cad37d
intern finish
4-dash Apr 5, 2026
4f0f54c
veranstalter dashboard
4-dash Apr 13, 2026
c883461
veranstalter form progressbar redo
4-dash Apr 13, 2026
e0664b2
minor refactor
4-dash Apr 13, 2026
37bbd5f
renaming
4-dash Apr 13, 2026
d3353d9
ergebnisse
4-dash Apr 18, 2026
2ec19be
veranstaltung
4-dash Apr 19, 2026
e7752e3
errormsg
4-dash Apr 19, 2026
73e3b7e
tans preview
4-dash Apr 19, 2026
f82fb2f
minor fix
4-dash Apr 19, 2026
ba53af9
fix
4-dash Apr 19, 2026
852cdc1
minor size change
4-dash Apr 20, 2026
df8d5ee
email change pages style
4-dash May 1, 2026
ea07227
minor fiexs
4-dash May 1, 2026
0cf017a
jquery update
4-dash May 1, 2026
fc76e1a
translations
4-dash May 2, 2026
fb07e32
fix
4-dash May 2, 2026
7ba3ffb
Merge branch 'master' into new_design
4-dash May 6, 2026
fc5b1ed
color fix
4-dash May 6, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions media/copy.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
function copyToClipboard(button) {
const text = button.getAttribute("data-text");

navigator.clipboard.writeText(text).then(function() {
const alertBox = document.createElement("span");
alertBox.className = "text-success ms-2";
alertBox.innerText = "Copied!";

button.parentElement.appendChild(alertBox);
setTimeout(() => alertBox.remove(), 2000);
}).catch(err => console.error('Copy failed:', err));
navigator.clipboard.writeText(text);
}
233 changes: 0 additions & 233 deletions media/custom.css

This file was deleted.

Binary file added media/fonts/roboto-italic.woff2
Binary file not shown.
Binary file added media/fonts/roboto-slab.woff2
Binary file not shown.
Binary file added media/fonts/roboto.woff2
Binary file not shown.
24 changes: 24 additions & 0 deletions media/header_functions.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
window.addEventListener('DOMContentLoaded', () => {
const btn = document.getElementById('theme-button');
if (!btn) return;

const root = document.documentElement;

const applyTheme = (theme) => {
root.classList.remove('light', 'dark');
root.classList.add(theme);
};

btn.addEventListener('click', () => {
const current = root.classList.contains('dark') ? 'dark' : 'light';
const next = current === 'dark' ? 'light' : 'dark';

applyTheme(next);
localStorage.setItem('theme', next);
});
});

document.querySelector('.dropdown-trigger').addEventListener('click', function(e) {
e.preventDefault();
this.parentElement.querySelector('.dropdown-content').classList.toggle('show');
});
Loading
Loading