Files
Inventarsystem/Web/templates/student_card_barcode_print.html
T
2026-04-10 14:48:52 +02:00

157 lines
4.0 KiB
HTML

<!--
Copyright 2025-2026 AIIrondev
Licensed under the Inventarsystem EULA (Endbenutzer-Lizenzvertrag).
See Legal/LICENSE for the full license text.
Unauthorized commercial use, SaaS hosting, or removal of branding is prohibited.
For commercial licensing inquiries: https://github.com/AIIrondev
-->
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Schülerausweis - Barcode PDF Download</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.container {
background: white;
border-radius: 12px;
padding: 40px;
text-align: center;
box-shadow: 0 10px 40px rgba(0,0,0,0.2);
max-width: 500px;
width: 100%;
}
.icon {
font-size: 60px;
margin-bottom: 20px;
}
h1 {
color: #333;
font-size: 28px;
margin-bottom: 10px;
}
p {
color: #666;
font-size: 14px;
margin-bottom: 30px;
line-height: 1.6;
}
.info-box {
background: #f0f0f0;
border-left: 4px solid #667eea;
padding: 15px;
margin-bottom: 30px;
text-align: left;
border-radius: 4px;
}
.info-box strong {
color: #333;
}
.info-box p {
margin: 5px 0;
font-size: 13px;
}
.btn-group {
display: flex;
gap: 12px;
flex-direction: column;
}
.btn {
padding: 14px 28px;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 16px;
font-weight: 600;
transition: all 0.3s;
text-decoration: none;
display: inline-block;
}
.btn-primary {
background: #667eea;
color: white;
}
.btn-primary:hover {
background: #5568d3;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}
.btn-secondary {
background: #e0e0e0;
color: #333;
}
.btn-secondary:hover {
background: #d0d0d0;
}
.status {
font-size: 12px;
color: #999;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="container">
<div class="icon">📇</div>
<h1>Schülerausweis-Download</h1>
<p>Generieren Sie eine PDF mit Barcodes aller Schülerausweise zum direkten Drucken</p>
<div class="info-box">
<strong>📌 Was wird heruntergeladen?</strong>
<p>Eine druckfertige PDF mit:</p>
<p>✓ Alle Schülerausweise</p>
<p>✓ Scanbare CODE128 Barcodes</p>
<p>✓ Optimiert für A4-Druck (2 Karten pro Seite)</p>
<p>✓ Professionelle Qualität</p>
</div>
<div class="btn-group">
<a href="{{ download_link }}" class="btn btn-primary">
📥 PDF herunterladen & Drucken
</a>
<button onclick="window.history.back()" class="btn btn-secondary">
Zurück
</button>
</div>
<div class="status">
<p>Generiert am: <span id="timestamp"></span></p>
</div>
</div>
<script>
document.getElementById('timestamp').textContent = new Date().toLocaleString('de-DE');
</script>
</body>
</html>