wakapi/views/reset-password.tpl.html

39 lines
1.5 KiB
HTML
Raw Normal View History

2021-04-05 23:57:57 +03:00
<!DOCTYPE html>
<html lang="en">
{{ template "head.tpl.html" . }}
<body class="bg-gray-900 text-gray-700 p-4 pt-10 flex flex-col min-h-screen max-w-screen-lg mx-auto justify-center">
2021-04-05 23:57:57 +03:00
{{ template "header.tpl.html" . }}
{{ template "alerts.tpl.html" . }}
<main class="mt-10 flex-grow flex justify-center w-full">
<div class="flex-grow max-w-lg mt-10">
<div class="mb-8">
<h1 class="font-semibold text-3xl text-white m-0">Reset Password</h1>
<span class="text-gray-600">
If you forgot your password, enter the e-mail address you associated with Wakapi to reset it and choose a new one. You will receive an e-mail afterwards. Make sure to check your spam folder.
</span>
</div>
2021-04-05 23:57:57 +03:00
<form action="reset-password" method="post">
<p class="text-sm text-white mb-8"></p>
2021-04-05 23:57:57 +03:00
<div class="mb-8">
<input class="appearance-none bg-gray-850 focus:bg-gray-800 text-gray-300 outline-none rounded w-full py-2 px-4"
2021-04-05 23:57:57 +03:00
type="email" id="email"
name="email" placeholder="Enter your e-mail address" minlength="1" required autofocus>
</div>
<div class="flex justify-end items-center">
<button type="submit" class="py-2 px-4 font-semibold rounded bg-green-700 hover:bg-green-800 text-white text-sm">Reset</button>
2021-04-05 23:57:57 +03:00
</div>
</form>
</div>
</main>
{{ template "footer.tpl.html" . }}
{{ template "foot.tpl.html" . }}
</body>
</html>