42 lines
1.2 KiB
HTML
42 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Delete Question</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
</head>
|
|
<body>
|
|
|
|
<header class="app-header">
|
|
<a class="brand" href="{{ url_for('admin.dashboard') }}">admin</a>
|
|
<nav class="site-nav">
|
|
<a href="{{ url_for('admin.dashboard') }}">Dashboard</a>
|
|
<a href="{{ url_for('public.home') }}">Public Site</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main class="page admin-page">
|
|
<section class="main-card admin-card">
|
|
<p class="eyebrow">Delete</p>
|
|
<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>
|
|
</section>
|
|
</main>
|
|
|
|
<footer class="app-footer">
|
|
<span>destructive action</span>
|
|
<span>confirm</span>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|