f47cf39802
test / test (push) Has been cancelled
Split the hash-sheet prototype into one HTML file per screen, composed from stack, pair, measure, and fill. system.html is the grammar; shell.js is shared chrome. The running panel is unchanged. Co-Authored-By: Cursor <cursoragent@cursor.com>
31 lines
1.2 KiB
HTML
31 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Create administrator — SelfPost mockups</title>
|
|
<link rel="icon" href="../selfpost-icon-16.svg" type="image/svg+xml">
|
|
<link rel="stylesheet" href="mock.css">
|
|
<link rel="stylesheet" href="system.css">
|
|
</head>
|
|
<body class="page-setup" data-page="setup" data-nav="setup" data-title="Create administrator" data-auth="1">
|
|
<main class="auth">
|
|
<img class="mark" src="../selfpost-stamp.svg" width="330" height="150" alt="SelfPost">
|
|
<h1>Create administrator</h1>
|
|
<div class="card">
|
|
<p class="muted">This one-time link creates the single panel administrator. After you submit, the link stops working for good.</p>
|
|
<form action="status.html">
|
|
<label>Username</label>
|
|
<input autocomplete="username">
|
|
<label>Password</label>
|
|
<input type="password" autocomplete="new-password">
|
|
<label>Confirm password</label>
|
|
<input type="password" autocomplete="new-password">
|
|
<div class="actions-row"><button type="submit">Create administrator</button></div>
|
|
</form>
|
|
</div>
|
|
</main>
|
|
<script src="shell.js"></script>
|
|
</body>
|
|
</html>
|