-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstart-moving.html
105 lines (87 loc) · 3.87 KB
/
start-moving.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
100
101
102
103
104
105
<!DOCTYPE html>
<html>
<head>
<title>Movement Now</title>
<script src="https://www.gstatic.com/firebasejs/5.5.8/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.5.8/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.5.8/firebase-database.js"></script>
<script src="https://cdn.firebase.com/libs/firebaseui/3.1.1/firebaseui.js"></script>
<link type="text/css" rel="stylesheet" href="https://cdn.firebase.com/libs/firebaseui/3.1.1/firebaseui.css"/>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<!-- Custom fonts for this template -->
<link href="https://fonts.googleapis.com/css?family=Catamaran:100,200,300,400,500,600,700,800,900" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/movementnow.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script src="./src/firebase.js"></script>
<script src="./src/app.js"></script>
<script src="./src/database-firebase.js"></script>
</head>
<body>
<div id="overlay">
<div class="d-flex flex-column" id="text">
<button onclick="off()" id="closebutton">Close</button>
<div id="firebaseui-auth-container"></div>
<div id="loader">Loading...</div>
</div>
</div>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark navbar-custom fixed-top">
<div class="container">
<a class="navbar-brand" href="./index.html">Movement Now</a>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item notLoggedIn">
<a class="nav-link" href="#" onclick="on()">Sign Up or Log In</a>
</li>
<li class="nav-item userFeatures">
<a class="nav-link userFeatures" href="./profile.html">Profile</a>
</li>
<li class="nav-item userFeatures">
<a class="nav-link userFeatures" href="./index.html" onclick="logOut()">Log Out</a>
</li>
</ul>
</div>
</div>
</nav>
<header class="class text-center text-white">
<div class="masthead-content">
<div class="container">
<h1 class="masthead-heading mb-0">Start Moving</h1>
</div>
</div>
</header>
<section>
<div class="container">
<div class="row align-items-center">
<div class="col-lg-12">
<div class="p-5">
<a href="./stretch-directory.html"><span>Go Back to Stretch Directory</span></a>
<br>
<br>
<h2 class="display-4">Get moving.</h2>
<div id="videos">
<br>
<!-- videos go here -->
</div>
</div>
</div>
</div>
</div>
</section>
<br>
<br>
<!-- Footer -->
<footer class="footer py-5 bg-black">
<div class="container">
<p class="m-0 text-center text-white small">Copyright © Movement Now 2018</p>
</div>
<!-- /.container -->
</footer>
</body>
<script src="./src/start-moving.js"></script>
</html>