All checks were successful
Build and push / Pulling repo on server (push) Successful in 2s
20 lines
1.0 KiB
HTML
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>
|