Skip to content

Commit

Permalink
ADD Login page
Browse files Browse the repository at this point in the history
  • Loading branch information
Khaled6120 committed Aug 9, 2023
1 parent d80cd2c commit 120d6b6
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/views/login.ejs
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>

0 comments on commit 120d6b6

Please sign in to comment.