25 lines
604 B
HTML
25 lines
604 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Delete Question</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
</head>
|
|
<body>
|
|
|
|
<main class="page admin-page">
|
|
<h1>Delete Question</h1>
|
|
|
|
<p>Delete the question scheduled for {{ question.date }}?</p>
|
|
<h2>{{ question.question }}</h2>
|
|
|
|
<form class="admin-form" method="POST">
|
|
<div class="form-actions">
|
|
<button class="button-compact danger" type="submit">Delete</button>
|
|
<a href="{{ url_for('admin.dashboard') }}">Cancel</a>
|
|
</div>
|
|
</form>
|
|
</main>
|
|
|
|
</body>
|
|
</html>
|