25 lines
758 B
HTML
25 lines
758 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<title>Roast Planner Admin</title>
|
|
<link rel="stylesheet" href="/app.css" />
|
|
</head>
|
|
<body>
|
|
<main class="auth-page">
|
|
<section class="panel-card auth-card">
|
|
<a href="/app">← Plans</a>
|
|
<h1>Administration</h1>
|
|
<label><input id="signup" type="checkbox" /> Allow new signups</label
|
|
><button id="save" class="primary-btn">Save setting</button>
|
|
<h2>Users</h2>
|
|
<ul id="users"></ul>
|
|
<h2>Recent roast plans</h2>
|
|
<ul id="plans"></ul>
|
|
</section>
|
|
</main>
|
|
<script type="module" src="/js/admin.js"></script>
|
|
</body>
|
|
</html>
|