mp/consumerWebsite/views/forgotPassword.ejs
viviannTam 7bd92805dd c
2024-01-30 15:54:04 +08:00

16 lines
603 B
Plaintext

<%- include('logintop') %>
<body>
<section class="wrapper">
<div class="form">
<header>Forgot Password</header>
<form action="auth/checkemail" onsubmit="formAJAX(this)" evalAJAX="app.auth.logInRedirect();">
<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>