complete implemention and design of login and register navgan users

This commit is contained in:
2023-07-12 14:43:54 +03:30
parent 50107f2e5c
commit 6c32a374de
14 changed files with 859 additions and 372 deletions

View File

@@ -0,0 +1,9 @@
const BASE_URL = process.env.NEXT_PUBLIC_BASE_URL + "/api";
export const LOGIN_SEND_OTP_TOKEN = BASE_URL + "/login/send_otp";
export const LOGIN = BASE_URL + "/login";
export const REGISTER_SEND_OTP_TOKEN = BASE_URL + "/register/send_otp";
export const REGISTER = BASE_URL + "/register";
export const USER_INFO = BASE_URL + "/hamidGiveme";