generated from RCDD-202303-TUR-BEW/backend-capstone-template
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d80cd2c
commit 120d6b6
Showing
1 changed file
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 1,17 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet" /> | ||
<title>Login</title> | ||
</head> | ||
|
||
<body> | ||
<a href="/">Homepage</a> | ||
<h3>Login to Continue</h3> | ||
<a href="/auth/google">Login with Google</a> | ||
</body> | ||
</head> | ||
|
||
</html> | ||
<body class="bg-gray-100 flex items-center justify-center min-h-screen"> | ||
<div class="max-w-sm mx-auto bg-white rounded-lg shadow-lg p-12"> | ||
<a href="/" class="block bg-gray-200 hover:bg-gray-300 text-gray-700 text-center py-3 px-8 rounded mb-4">Home page</a> | ||
<a href="/auth/google" class="block bg-purple-900 hover:bg-purple-700 text-white text-center py-3 px-8 rounded"> Login with Google </a> | ||
</div> | ||
</body> | ||
</html> |