42 lines
2.3 KiB
Plaintext
42 lines
2.3 KiB
Plaintext
<%- include("./partials/fileHeader") %>
|
|
<%- include("./partials/headerStart") %>
|
|
|
|
<main class="pt-12 bg-slate-100 min-h-screen">
|
|
<div class="flex justify-center items-center py-10">
|
|
<form action="/auth/resetPass" method="POST">
|
|
<div class="w-96 p-8 bg-white rounded-lg shadow-xl border border-slate-200">
|
|
<h1 class="text-3xl block text-center font-semibold text-slate-700">Reset Password</h1>
|
|
<hr class="mt-4 mb-6 border-slate-300">
|
|
|
|
<% if (!reset ) { %>
|
|
<div class="mt-4">
|
|
<label for="email" class="block text-base mb-2 text-slate-600">Email</label>
|
|
<input type="text" id="email" name="email"
|
|
class="border border-slate-300 focus:border-indigo-500 w-full rounded-md text-base px-3 py-2 focus:outline-none focus:ring-1 focus:ring-indigo-500 transition-colors duration-200"
|
|
placeholder="Enter Email" />
|
|
</div>
|
|
<% } else { %>
|
|
<div class="mt-4 text-center">
|
|
<h2 class="text-xl font-semibold text-green-600">Reset link sent.</h2>
|
|
<p class="text-sm text-slate-600 mt-2">Please check your email inbox (and spam folder).</p>
|
|
</div>
|
|
<% } %>
|
|
|
|
<% if (typeof error !== 'undefined' && error && error.length > 0) { %>
|
|
<div class="mt-3 text-red-600 font-semibold text-sm" id="forgor"><%= error %></div>
|
|
<% } else if (!reset) { %>
|
|
<div class="mt-3 h-5" id="forgor"></div> <% /* Placeholder for layout consistency */ %>
|
|
<% } %>
|
|
|
|
<% if (!reset) { %>
|
|
<div class="mt-6">
|
|
<button type="submit"
|
|
class="border-2 border-indigo-600 bg-indigo-600 text-white py-2 w-full rounded-md hover:bg-indigo-700 hover:border-indigo-700 font-semibold transition-colors duration-200 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2">Send Reset Link</button>
|
|
</div>
|
|
<% } %>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</main>
|
|
|
|
<%- include("./partials/footer") %> |