-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
52 lines (50 loc) · 1.73 KB
/
index.html
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
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Gmail and Phone Authentication</title>
<script src="https://www.gstatic.com/firebasejs/5.0.4/firebase.js"></script>
<script>
var config = {
apiKey: "AIzaSyAERKBij3P7LK7OSFx-MXbakgzn-Ey2eUo",
authDomain: "salesmanagement-81b05.firebaseapp.com",
databaseURL: "https://salesmanagement-81b05.firebaseio.com",
projectId: "salesmanagement-81b05",
storageBucket: "salesmanagement-81b05.appspot.com",
messagingSenderId: "1053586444895",
appId: "1:1053586444895:web:375009cfbaab88e27301ea",
measurementId: "G-S7S0BWYNGM"
};
firebase.initializeApp(config);
</script>
<script src="https://cdn.firebase.com/libs/firebaseui/2.3.0/firebaseui.js"></script>
<link type="text/css" rel="stylesheet" href="https://cdn.firebase.com/libs/firebaseui/2.3.0/firebaseui.css" />
<link href="style.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
<div id="container">
<h3>Authentication via Gmail/Phone number</h3>
<div id="loading">Loading...</div>
<div id="loaded" class="hidden">
<div id="main">
<div id="user-signed-in" class="hidden">
<div id="user-info">
<div id="phone"></div>
<div class="clearfix"></div>
</div>
<p>
<button id="sign-out">Sign Out</button>
</p>
</div>
<div id="user-signed-out" class="hidden">
<div id="firebaseui-spa">
<h3>App:</h3>
<div id="firebaseui-container"></div>
</div>
</div>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>