MalwareServer/files.html

19 lines
321 B
HTML
Raw Normal View History

2024-05-04 01:30:04 +02:00
<!-- files.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Files</title>
</head>
<body>
<h2>Files</h2>
<ul>
{{range .Files}}
<li>{{.}}</li>
{{end}}
</ul>
</body>
</html>