bin/server/templates/delete.stpl

22 lines
788 B
Text
Raw Normal View History

2023-11-06 21:53:45 +01:00
<html>
<head>
2024-01-25 22:36:52 +01:00
<title>pfzetto bin</title>
<link rel="icon" type="image/svg" href="https://pfzetto.de/pfzetto.svg"/>
2023-11-06 21:53:45 +01:00
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-01-25 22:36:52 +01:00
<% include!("./style.stpl"); %>
2023-11-06 21:53:45 +01:00
</head>
<body>
2024-01-25 22:36:52 +01:00
<canvas id="matrix"></canvas>
2023-11-06 21:53:45 +01:00
<main>
<h1>Confirm Deletion</h1>
<p>The bin will be deleted. All data will be permanently lost.</p>
<form method="post">
<button type="submit">Delete</button>
</form>
</main>
2024-01-25 22:36:52 +01:00
<a class="watermark" href="https://pfzetto.de"><img src="https://pfzetto.de/pfzetto.svg" alt="pfzetto Logo"></a>
<% include!("./background.stpl"); %>
2023-11-06 21:53:45 +01:00
</body>
</html>