Files
org_web/home/login.org
Zaine Arch 70b428fce7 Revert "hehe 2"
This reverts commit 66848674e9.
2026-05-09 01:18:08 +01:00

22 lines
633 B
Org Mode

#+TITLE: Login
#+OPTIONS: toc:nil num:nil
#+NO_SIDENOTES: t
#+COMMENTS: nil
#+SLUG: login
#+BEGIN_EXPORT html
<main class="auth-page">
<form id="login-form" class="auth-form">
<h1>Login</h1>
<label for="login-username">Username</label>
<input id="login-username" name="username" type="text" autocomplete="username" required>
<label for="login-password">Password</label>
<input id="login-password" name="password" type="password" autocomplete="current-password" required>
<button type="submit">Login</button>
<p id="login-message" class="auth-message" role="alert"></p>
</form>
</main>
#+END_EXPORT