18 lines
458 B
HTML
18 lines
458 B
HTML
|
<!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>
|