Files
TicketSupport/views/register.ejs
T
2026-05-01 19:31:44 +02:00

17 lines
484 B
Plaintext

<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>