51 lines
1.7 KiB
HTML
51 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Startseite</title>
|
|
<link rel="stylesheet" type="text/css" href="src/css/styles.css">
|
|
<link rel="stylesheet" type="text/css" href="src/css/index.css">
|
|
<link rel="icon" href="src/img/white_small.png">
|
|
</head>
|
|
<body>
|
|
|
|
<header class="navigation select">
|
|
<img src="src/img/white.png" alt="Logo">
|
|
<nav>
|
|
<a href="index.html">Home</a>
|
|
<a href="products.html">Produkte</a>
|
|
<a href="contact.html">Kontakt</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main class="select">
|
|
<h1>Seiten</h1>
|
|
<div class="buttons">
|
|
<button class="button" id="https://admin.leon-hoppe.de">Webmin</button>
|
|
<button class="button" id="https://cloud.leon-hoppe.de">Nextcloud</button>
|
|
<button class="button" id="https://mail.leon-hoppe.de">Webmail</button>
|
|
<button class="button load" id="https://panel.leon-hoppe.de">Gameserver Panel</button>
|
|
<button class="button" id="https://paste.leon-hoppe.de">Paste Server</button>
|
|
<button class="button" id="https://pma.leon-hoppe.de">PhpMyAdmin</button>
|
|
<button class="button load" id="https://leon-hoppe.de/test/">HTML Tests</button>
|
|
</div>
|
|
</main>
|
|
|
|
<script>
|
|
const buttons = document.getElementsByClassName("button")
|
|
for (let i = 0; i < buttons.length; i++) {
|
|
const button = buttons[i];
|
|
|
|
if (button.classList.contains("load")) {
|
|
button.onclick = function() {
|
|
location.href = "https://leon-hoppe.de/load.html?href=" + button.id;
|
|
}
|
|
}else {
|
|
button.onclick = function() {
|
|
location.href = button.id;
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |