20 lines
439 B
Plaintext
20 lines
439 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Settings</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<%- include('partials/nav') %>
|
|
<div class="content">
|
|
<form action='/purge' method='post'>
|
|
<button type="submit" >Purge Revoked Tickets</button>
|
|
</form>
|
|
<form action='/wipedb' method='post'>
|
|
<button type="submit" >Wipe the Database</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|