All checks were successful
Build and push / Pulling repo on server (push) Successful in 20s
31 lines
2.5 KiB
HTML
31 lines
2.5 KiB
HTML
<div class="flex flex-col items-center justify-center px-6 py-8 mx-auto lg:py-0">
|
|
<div class="w-full bg-white rounded-lg shadow dark:border md:mt-0 sm:max-w-md xl:p-0 dark:bg-gray-800 dark:border-gray-700">
|
|
<div class="p-6 space-y-4 md:space-y-6 sm:p-8">
|
|
<h1 class="text-xl font-bold leading-tight tracking-tight text-gray-900 md:text-2xl dark:text-white">
|
|
Register
|
|
</h1>
|
|
<div id="response" class="text-gray-900 dark:text-white">
|
|
<?= $hello ?>
|
|
</div>
|
|
<form class="space-y-4 md:space-y-6" hx-post="/register/validate" hx-target="#response">
|
|
<div>
|
|
<label for="email" class="block mb-2 text-sm font-medium text-gray-900 dark:text-white">Your email</label>
|
|
<input type="email" name="email" id="email" class="bg-gray-50 border border-gray-300 text-gray-900 sm:text-sm rounded-lg focus:ring-primary-600 focus:border-primary-600 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" placeholder="name@company.com" required="">
|
|
</div>
|
|
<div>
|
|
<label for="password" class="block mb-2 text-sm font-medium text-gray-900 dark:text-white">Password</label>
|
|
<input type="password" name="password" id="password" placeholder="••••••••" class="bg-gray-50 border border-gray-300 text-gray-900 sm:text-sm rounded-lg focus:ring-primary-600 focus:border-primary-600 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" required="">
|
|
</div>
|
|
<div>
|
|
<label for="password2" class="block mb-2 text-sm font-medium text-gray-900 dark:text-white">Repeat Password</label>
|
|
<input type="password" name="password2" id="password2" placeholder="••••••••" class="bg-gray-50 border border-gray-300 text-gray-900 sm:text-sm rounded-lg focus:ring-primary-600 focus:border-primary-600 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" required="">
|
|
</div>
|
|
|
|
<button type="submit" class="bg-sky-500 hover:bg-sky-700 p-2 rounded">
|
|
Account erstellen
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|