first commit

This commit is contained in:
Patrick
2026-05-01 19:31:44 +02:00
commit edf0441035
19 changed files with 1385 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<section class="auth">
<h1>Register</h1>
<form method="post" action="/register" class="card">
<label>Name
<input type="text" name="name" />
</label>
<label>Email
<input type="email" name="email" required />
</label>
<label>Password
<input type="password" name="password" required minlength="6" />
</label>
<button type="submit">Create account</button>
</form>
<p>Already have an account? <a href="/login">Login</a></p>
</section>