You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After the email and password have been validated and approved on the Sign-Up page, the user should receive a verification email to be able to proceed with the registration.
Send a verification email to the user when the user click Sign Up on the Register Page
// register/index.js// function onRegister() --> check auth.js<Buttontext="Sign up"onClick={()=>onRegister(formData.email,formData.password)}classes="green width-full"/>
The email should contain a verification link
The link should make it possible for the user to login: See design document: Email Verification Page
The user should be able to click the Resendbutton to recieve a new email.
EPIC: #9
After the email and password have been validated and approved on the Sign-Up page, the user should receive a verification email to be able to proceed with the registration.
The email should contain a verification link
The link should make it possible for the user to login:
See design document: Email Verification Page
The user should be able to click the
Resend
button to recieve a new email.Possible resource/stackoverflow tips: Use nodemailer. NOTE! Check if it's a secure library or research other solutions.
The text was updated successfully, but these errors were encountered: