1
0

128 lines
3.3 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Flash Downloader</title>
<script defer src="https://stats.ponywave.de/script" data-website-id="9ef713d2-adb9-4906-9df5-708d8a8b9131" data-tag="flash_dl"></script>
<style>
:root {
--primary: #2c3e50;
--secondary: #3498db;
}
body {
font-family: system-ui, sans-serif;
line-height: 1.6;
margin: 0;
min-height: 100vh;
background: #f8f9fa;
display: flex;
justify-content: center;
align-items: center;
}
main {
width: 90%;
max-width: 500px;
padding: 2rem;
background: white;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.downloader {
margin: 2rem 0;
}
h1 {
color: var(--primary);
text-align: center;
margin: 0 0 2rem 0;
}
form {
display: grid;
gap: 1rem;
}
input[type="text"] {
padding: 0.8rem;
border: 2px solid #ddd;
border-radius: 5px;
font-size: 1rem;
width: 100%;
box-sizing: border-box;
}
button {
background: var(--secondary);
color: white;
border: none;
padding: 1rem;
border-radius: 5px;
cursor: pointer;
font-size: 1.1rem;
transition: background 0.2s;
}
button:hover {
background: #2980b9;
}
.example {
color: #666;
font-size: 0.9rem;
margin-top: 0.5rem;
}
</style>
</head>
<body>
<main>
<h1>Flash Downloader</h1>
<div class="downloader">
<form onsubmit="downloadFusRoga(event)">
<input
type="text"
name="id"
placeholder="FUS RO GA ID"
pattern="\d+"
required
>
<button type="submit">FUS RO GA Download</button>
<div class="example">Beispiel: 6194 (von http://fusro.ga/6194)</div>
</form>
</div>
<div class="downloader">
<form onsubmit="downloadZ0r(event)">
<input
type="text"
name="id"
placeholder="Z0R ID"
pattern="\d+"
required
>
<button type="submit">Z0R Download</button>
<div class="example">Beispiel: 17 (von http://z0r.de/17)</div>
</form>
</div>
</main>
<script>
function downloadFusRoga(e) {
e.preventDefault();
const id = e.target.id.value;
window.location.href = `http://fusro.ga/loop/${id}.swf`;
}
function downloadZ0r(e) {
e.preventDefault();
const id = e.target.id.value;
window.location.href = `http://z0r.de/L/z0r-de_${id}.swf`;
}
</script>
</body>
</html>