summaryrefslogtreecommitdiff
path: root/backend/views/pages/auth.ejs
diff options
context:
space:
mode:
Diffstat (limited to 'backend/views/pages/auth.ejs')
-rw-r--r--backend/views/pages/auth.ejs21
1 files changed, 21 insertions, 0 deletions
diff --git a/backend/views/pages/auth.ejs b/backend/views/pages/auth.ejs
new file mode 100644
index 0000000..7977b37
--- /dev/null
+++ b/backend/views/pages/auth.ejs
@@ -0,0 +1,21 @@
+<!-- views/pages/auth.ejs -->
+<!doctype html>
+<html>
+<head>
+ <title>Google SignIn</title>
+ <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
+ <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
+ <style>
+ body { padding-top:70px; }
+ </style>
+</head>
+<body>
+<div class="container">
+ <div class="jumbotron text-center text-primary">
+ <h1><span class="fa fa-lock"></span> Social Authentication</h1>
+ <p>Login or Register with:</p>
+ <a href="/auth/google" class="btn btn-danger"><span class="fa fa-google"></span> SignIn with Google</a>
+ </div>
+</div>
+</body>
+</html>