-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreport.html
More file actions
68 lines (62 loc) · 2.36 KB
/
report.html
File metadata and controls
68 lines (62 loc) · 2.36 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>HeaderHawk — Scan Report</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/static/style.css" />
<link rel="icon" href="/static/favicon.ico" sizes="any">
</head>
<body>
<header class="site-header">
<div class="container row">
<div class="brand">
<div class="logo" aria-hidden="true">🦅</div>
<a class="title link" href="/">HeaderHawk</a>
</div>
<nav aria-label="Breadcrumb" class="nav small">
<a href="/" class="nav-link">New scan</a>
</nav>
</div>
</header>
<main class="container">
<section class="card" id="report-section">
<div class="report-head row">
<div>
<h1 class="report-title">Scan Report</h1>
<p class="muted">Target: <span class="mono" id="target-url"></span></p>
</div>
<div class="badge-stack">
<div class="badge">Score: <strong id="score"></strong></div>
<div class="badge grade">Grade: <strong id="grade"></strong></div>
</div>
</div>
<div class="divider"></div>
<section aria-labelledby="issues-title">
<h2 id="issues-title" class="section-title">Issues</h2>
<ul class="list" id="issues-list"></ul>
<div class="empty-state" id="no-issues" style="display:none;">
<h3>No issues found</h3>
<p>Everything looks properly configured. Nice work!</p>
</div>
</section>
<div class="actions">
<a class="btn ghost" href="/">Run another scan</a>
<a class="btn" id="view-json" target="_blank" rel="noopener">View JSON</a>
</div>
</section>
</main>
<footer class="site-footer">
<div class="container row small">
<span>© <span id="year"></span> HeaderHawk</span>
<span>Made with 🩷 by
<a href="https://www.piyushinfinity.dev/" target="_blank" rel="noopener" style="text-decoration: none; color: rgb(255, 0, 157);">BATMAN</a>
</span>
</div>
</footer>
<script src="/static/js/report.js" defer></script>
</body>
</html>