mp/consumerWebsite/views/forgotPassword.ejs
viviannTam 31fe6b3c7c b
2024-01-30 14:48:17 +08:00

16 lines
587 B
Plaintext

<%- include('logintop') %>
<body>
<section class="wrapper">
<div class="form">
<header>Reset Password</header>
<form action="auth/checkemail" method="POST" onsubmit="formAJAX(this)">
<input type="email" name="email" placeholder="Email" required
pattern="\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*" />
<input type="submit" value="Reset Password" />
</form>
<br>
<a>Dont have an account?</a> <a href="/login">Sign Up</a>
</div>
</section>
</body>