24 lines
881 B
HTML
24 lines
881 B
HTML
<!DOCTYPE html>
|
|
<!-- Copyright © 2026 Olaf Kolkman -->
|
|
<!-- SPDX-License-Identifier: GPL-3.0-or-later -->
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Reset password - LinkLog</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="stylesheet" href="/static/style.css" />
|
|
</head>
|
|
<body>
|
|
<main class="container">
|
|
<section class="link-item settings-panel">
|
|
<h1>Reset password</h1>
|
|
<form id="reset-password-form">
|
|
<label>New password<input name="password" type="password" minlength="8" autocomplete="new-password" required /></label>
|
|
<button type="submit">Reset password</button>
|
|
<p id="reset-password-status" class="status" role="status"></p>
|
|
</form>
|
|
</section>
|
|
</main>
|
|
<script src="/static/reset-password.js"></script>
|
|
</body>
|
|
</html> |