-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (35 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<title>
Snappy
</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"/>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="style.css"/>
</head>
<body class="homepage">
<div class="main">
<h1 class="logo">Snappy</h1>
<p class="tagline">
An Instant chat platform
</p>
<button id="signin-button" class="button"> Sign in with Google
</button>
</div>
<script src="https://www.gstatic.com/firebasejs/3.6.7/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyCvIgw5UL4LzUcCO9Y2TYL6vukAJQU6P48",
authDomain: "snappy-cc919.firebaseapp.com",
databaseURL: "https://snappy-cc919.firebaseio.com",
storageBucket: "snappy-cc919.appspot.com",
messagingSenderId: "798696262009"
};
firebase.initializeApp(config);
</script>
<script type="text/javascript" src="function.js"></script>
<script type="text/javascript" src="app.js"></script>
</body>
</html>