-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
99 lines (84 loc) · 3.77 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google-signin-client_id"
content="258212949096-ffidj50r8jftp5s6duc93e4927pskcdd.apps.googleusercontent.com">
<link rel="stylesheet" href="CSS/bootstrap.css">
<link rel="stylesheet" href="CSS/index.css">
<script src="https://apis.google.com/js/api:client.js"></script>
<script async defer crossorigin="anonymous" src="https://connect.facebook.net/en_US/sdk.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.5.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.5.0/firebase-auth.js"></script>
<title>LOGIN PAGE</title>
</head>
<body>
<div id="fb-root"></div>
<script async defer crossorigin="anonymous"
src="https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v10.0&appId=367986131263200&autoLogAppEvents=1"
nonce="nzFLE5Nl"></script>
<div class="container">
<nav class="navbar navbar-expand-md navbar-dark text-white p-4">
<a class="navbar-brand" href="#">GitClone</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto ">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Link</a>
</li>
</ul>
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
</form>
</div>
</nav>
</div>
<div class="container-fluid heading">
<div class="row">
<div class="col-xl-5 py-4 mb-auto">
<h1 class="text-white header-text display-lg-5">Where the world builds software</h1>
<h3 class="sub-text">Millions of developers and companies build, ship, and maintain their software on GitHub—the
largest
and most advanced development platform in the world.</h3>
<div class="btn-login">
<div class="btn btn-div">
<div class="google-div">
<div class="g-signin2 d-inline-block " data-onsuccess="onSignIn" data-width="170"
data-auto_select="false"></div>
</div>
</div>
<button class="btn btn-div mr-md-2 facebook text-white" onclick="fb_login()">Login with Facebook</button>
<button class="btn btn-div github text-white" onclick="github_login()">Login with GitHub</button>
</div>
</div>
<div class="col-xl-7">
<div class="video">
<video id="playback " onplay="PlayBack()" loop autoplay>
<source src="video/How we built the GitHub globe - The GitHub Blog_2.mp4" type="video/mp4">
</video>
</div>
</div>
</div>
</div>
<div class="svg-pic">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" preserveAspectRatio="none" viewBox="0 0 1680 40"
class="width-full z-1" style="bottom: -1px;">
<path d="M0 40h1680V30S1340 0 840 0 0 30 0 30z" fill="#fff"></path>
</svg>
<img id="astronut" src="img/github-astro.svg" alt="">
<div class="moon">1</div>
</div>
</body>
<script src="JS/jquery-2.1.4.js"></script>
<script src="JS/bootstrap.js"></script>
<script src="JS/index.js"></script>
<script src="https://apis.google.com/js/platform.js" async defer></script>
</html>