Initial config with email service test
Build LinkLog Development Image / development-image (push) Successful in 11s

This commit is contained in:
Olaf
2026-08-25 23:23:28 +02:00
parent defe7a83a9
commit 102d8e533c
20 changed files with 482 additions and 34 deletions
+24
View File
@@ -0,0 +1,24 @@
<!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>