-
Notifications
You must be signed in to change notification settings - Fork 0
/
getstarted.html
50 lines (41 loc) · 2.22 KB
/
getstarted.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/main.css">
<script src="https://www.gstatic.com/firebasejs/5.7/firebase.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.7/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.7/firebase-auth.js"></script>
<script type="text/javascript" src="javascript/jquery.js"></script>
<script src="javascript/initialize.js"></script>
<script src="javascript/listener.js"></script>
<script src="javascript/login.js"></script>
<script src="javascript/main.js"></script>
</head>
<body style="background-color:rgb(195, 195, 195)">
         <a href="index.html" style="all: unset;color:grey;cursor: pointer;font-size: 17px;;"><strong>Home</strong></a>
<h1 style="text-align: center;">Join Blogging</h1>
<h3 style="text-align: center;">Create an account to personalize your <br> homepage, follow your favorite authors and <br>publications, applaud stories you love, and<br> more.</h3>
<button class="loginBtn loginBtn--facebook" onclick="fbSignup()">
Sign up with Facebook
</button><br>
<button class="loginBtn loginBtn--google" onclick="googleSignup()">
Sign up with Google
</button><br><br>
<h5 style="display: table;margin: 0 auto;">
<h3 style="display: table;margin: 0 auto;">Already have an account?</h3><br>
<!-- <a style="display: table;margin: 0 auto;background-color: rgb(250, 244, 244);">Sign in</a></h5> -->
<button class="loginBtn loginBtn--facebook" onclick="fbSignup()">
Sign in
</button><br>
<button class="loginBtn loginBtn--google" onclick="googleSignin()">
Sign in
</button>
<script src="javascript/main.js"></script>
<br><br>
<h3 style="text-align: center;">To make Blogging work, we log user data and share it with <br> service providers. Click “Sign up” above to accept Blogging’s <br> Terms of Service & Privacy Policy.</h3>
</body>
</html>