aboutsummaryrefslogtreecommitdiffstats
path: root/app/register/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/register/page.tsx')
-rw-r--r--app/register/page.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/register/page.tsx b/app/register/page.tsx
index 45941fd..d480ab1 100644
--- a/app/register/page.tsx
+++ b/app/register/page.tsx
@@ -76,6 +76,10 @@ const Register = () => {
const registerUser = () => {
+ console.log(email);
+ console.log(password);
+ console.log(isValidEmail);
+ console.log(isValidPassword);
if (isValidEmail && isValidPassword) {
createUserWithEmailAndPassword(auth, email, password)
.then(() => {
@@ -120,4 +124,4 @@ const Register = () => {
);
}
-export default Register; \ No newline at end of file
+export default Register;