22 lines
635 B
HTML
22 lines
635 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="zoraxy.csrf.Token" content="{{.csrfToken}}">
|
|
<title>Zoraxy WAF</title>
|
|
<link rel="stylesheet" href="./style.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Zoraxy WAF</h1>
|
|
<p>Web Application Firewall — coming soon.</p>
|
|
</header>
|
|
<main>
|
|
<p>Configure firewall rules, rate limits, and IP blocking from this panel.</p>
|
|
</main>
|
|
<script src="/script/jquery-3.6.0.min.js"></script>
|
|
<script src="/script/utils.js"></script>
|
|
<script src="./app.js"></script>
|
|
</body>
|
|
</html>
|