pow-site/templates/result.html

18 lines
458 B
HTML
Raw Normal View History

2024-10-22 14:05:39 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Verification Result</title>
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
</head>
<body>
<div class="container">
<h1>Verification Result</h1>
<p>{{ status }}</p>
<a href="/get-challenge">Try Another Challenge</a>
</div>
</body>
</html>