Server-Bibliothek
2026-07-23 548bab93e55f6e514557571d3c9da9b1c1d59c35
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
<!DOCTYPE html>
<html lang="de">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Zugriff eingeschränkt – Server-Bibliothek</title>
  <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
  <div class="layout">
    <main class="main" style="max-width:520px; margin:60px auto;">
      <div class="panel">
        <p class="eyebrow">Zugriff eingeschränkt</p>
        <h1 style="margin-bottom:14px;">Nur eingeschränkter Zugriff verfügbar</h1>
        <p style="font-size:13.5px; line-height:1.6;">
          Von diesem Rechner aus (über das Netzwerk) ist nur die Software-Anforderung
          verfügbar. Die vollständige Verwaltung (Software-Katalog, Protokolle usw.)
          ist ausschließlich direkt am Server selbst zugänglich.
        </p>
        <a href="{{ url_for('einrichten') }}" class="btn" style="margin-top:10px; display:inline-block;">
          Zur Software-Anforderung
        </a>
      </div>
    </main>
  </div>
</body>
</html>