This repository has been archived on 2023-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
dogstats/web/pages/register/register.html
Chris 460fb6b1ee
All checks were successful
Build and push / Pulling repo on server (push) Successful in 2s
fixed array saving bug
2023-10-29 09:16:10 +01:00

20 lines
1.0 KiB
HTML

<h1>Registrieren</h1>
<form class="space-y-4 md:space-y-6" hx-post="/register/validate" hx-target="#response">
<div id="response"></div>
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input name="email" type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
<div class="form-group">
<label for="exampleInputPassword1">Passwort</label>
<input name="password" type="password" class="form-control" id="exampleInputPassword1" placeholder="Passwort">
</div>
<div class="form-group">
<label for="exampleInputPassword2">Passwort wiederholen</label>
<input name="password2" type="password" class="form-control" id="exampleInputPassword2" placeholder="Passwort Wiederholen">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>