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
The login and registration page currently just exist without any functionality.
Motivation
Need the accounts to actually be created and verified to log in.
Proposed Solution
Make HTTP requests to the back-end Go server at the POST /login/createAccount and POST /login/validateAccount endpoints, passing in a JSON object in the form
{
email: "",
password: ""
}
The text was updated successfully, but these errors were encountered:
Problem To Be Solved
The login and registration page currently just exist without any functionality.
Motivation
Need the accounts to actually be created and verified to log in.
Proposed Solution
Make HTTP requests to the back-end Go server at the
POST /login/createAccount
andPOST /login/validateAccount
endpoints, passing in a JSON object in the formThe text was updated successfully, but these errors were encountered: