Files
DNSSEC-check/popup.html
2026-03-09 10:26:37 +01:00

33 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="popup.css">
</head>
<body>
<div class="container" id="container">
<div class="header">
<svg id="shield-icon" class="shield" viewBox="0 0 64 64" width="48" height="48">
<path id="shield-path" d="M32 4 L58 18 L58 36 Q56 54 32 60 Q8 54 6 36 L6 18 Z" />
<g id="shield-symbol"></g>
</svg>
<h1>DNSSEC Check</h1>
</div>
<div class="domain" id="domain">Laden...</div>
<div class="status" id="status"></div>
<div class="description" id="description"></div>
<button class="recheck-btn" id="recheck-btn" title="Opnieuw controleren">
<svg viewBox="0 0 24 24" width="16" height="16" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
<path d="M1 4v6h6" /><path d="M23 20v-6h-6" />
<path d="M20.49 9A9 9 0 0 0 5.64 5.64L1 10m22 4l-4.64 4.36A9 9 0 0 1 3.51 15" />
</svg>
Opnieuw controleren
</button>
</div>
<script src="popup.js"></script>
</body>
</html>