This repository was archived by the owner on Mar 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgoogleauth.html
More file actions
40 lines (37 loc) · 1.96 KB
/
googleauth.html
File metadata and controls
40 lines (37 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, intial-scale=1,minimum-scale=1,maximum-scale=1">
<title>Jukebox</title>
<!-- Load FontAwesome icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css">
<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">
<link href="https://css.gg/arrow-long-up-c.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"></script>
<script src="https://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" ></script>
<script src="https://www.gstatic.com/firebasejs/8.7.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.7.0/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.7.0/firebase-database.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.7.0/firebase-analytics.js"></script>
<script src="mainnew.js"></script>
<!-- Load the custom CSS style file -->
<link rel="stylesheet" type="text/css" href="auth_style.css">
</head>
<body>
<div class="container1">
<div class="left">
<a href="index.html"><b>Jukebox</b></a><br/>
<button onclick="googleSignIn()" id="googlesign"><img src="https://img.icons8.com/color/48/000000/google-logo.png"/>Sign In With Google</button>
<p>or you don't have an account ?<span class="red"><a href="jukesignup.html"> Sign Up</a></span><br>
or have an account ? <span class="red"><a href="jukesignin.html"> Sign In</a></p>
<div id="userdetails"></div>
<button onclick="googleSignOut()" id="googlesignout"> Sign Out</button>
</div>
<div class="right">
<img src="main/images1.png">
</div>
</div>
</body>
</html>