blob: 62076cf06a60080bc9a62efd2f2792be004cc1aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<html>
<head>
<title>Rebuild</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/rebuild.js"></script>
</head>
<body>
<div id="main-container">
<%- include('partials/header') %>
<div id="content-container">
<%- include('partials/navbar') %>
<div id="content">
<h1>Rebuild</h1>
<span id="response"></span>
<p>Are you sure you wish to rebuild the page directory?</p>
<button id="confirm">Confirm</button>
</div>
</div>
</div>
</body>
</html>
|