diff options
| author | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2021-11-20 17:46:20 +0000 |
|---|---|---|
| committer | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2021-11-20 17:46:20 +0000 |
| commit | f4a3e9bf53c657c3e6b9330eb6ad644094f75e61 (patch) | |
| tree | 4cde00e1c6116281a79a2f5b0f3746a9bfc367a5 /app/views/purge.ejs | |
Initial commit
Diffstat (limited to 'app/views/purge.ejs')
| -rw-r--r-- | app/views/purge.ejs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/app/views/purge.ejs b/app/views/purge.ejs new file mode 100644 index 0000000..f36e482 --- /dev/null +++ b/app/views/purge.ejs @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<html> +<head> + <title>Purge page</title> + <link rel="stylesheet" href="/css/globalstyles.css"> + <script src="https://code.jquery.com/jquery-3.6.0.min.js" ntegrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script> + <script src="/scripts/purge.js"></script> +</head> +<body> + <div id="main-container"> + <%- include('partials/header') %> + <div id="content"> + <h1>Purge page</h1> + <span id="response"></span> + <p>Are you sure you wish to purge the page <span class="highlight"><%= page %></span>?</p> + <p>The last build time for this page was <span class="highlight"><%= buildTime %></span> (<span class="highlight"><%= buildTimeRelative %></span> minutes ago).</p> + <button id="confirm" data-page="<%= page %>">Confirm</button> + </div> + </div> +</body> +</html>
\ No newline at end of file |
