🚩 complete oauth process

Complete the OAuth process by adding a redirect when pressing the login button with the provider. When the button is
pressed, the system will request the authentication URL from the backend, then the user will be redirected.
This commit is contained in:
2025-08-26 10:25:58 +07:00
parent d80cb29ab6
commit 07f86c005e
4 changed files with 55 additions and 4 deletions

View File

@ -1,4 +1,4 @@
interface oauthProviders {
export interface OauthProviders {
name: string;
icon: string;
req_endpoint: string;

View File

@ -0,0 +1,5 @@
export interface ResponseRequestOauthUrl {
data: string;
message: string;
status: string;
}