-
Notifications
You must be signed in to change notification settings - Fork 1
/
workout2.php
277 lines (242 loc) · 11 KB
/
workout2.php
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
<?php
session_start();
//accessible to only logged in users.
if (!isset($_SESSION['id'])) {
?>
<script type="text/javascript">
alert("You must Log-In First");
window.location = "index.php";
</script>
<?php
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>
Workouts
</title>
<link href="https://fonts.googleapis.com/css?family=Satisfy" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="css/common.css">
<style>
.active{
background: beige;
}
body {
margin: 0;
}
</style>
</head>
<body>
<header>
<div class="header" style="color:#ffffff;">
<a href="homepage.html">
<img src="images/logo.png" width=35px height=30px>
<h1 style="display: inline; ">FITNESS 101</h1>
</a>
<div class="dropdown">
<button class="dropbtn"><img src="images/user.png" width=40px height=40px ></button>
<div class="dropdown-content">
<a href="help.php">Report Problem</a>
<a href="contactus.html">Contact Us</a>
<a href="member.php">Dashboard</a>
<a href="logout.php">Log out</a>
</div>
</div>
</div>
</header>
<nav>
<div id="navigation">
<a href="workout.php">HIIT</a>
<a href="workout1.php" >Stretching</a>
<a href="workout2.php" class="active">Weight Training</a>
<a href="workout3.php">Flexibility Training</a>
<a href="workout4.php">Yoga</a>
<a href="workout5.php">Pilates</a>
</div>
</nav>
<h2 style="text-align: center; font-family: Satisfy, cursive;">Intense At Home Functional Core Strength routine from professionals!</h2>
<div class="stretching" id="stretching" >
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
img {
vertical-align: middle;
}
/* Position the image container (needed to position the left and right arrows) */
.container {
position: relative;
height:300px;
}
/* Hide the images by default */
.mySlides {
display: none;
}
/* Add a pointer when hovering over the thumbnail images */
.cursor {
cursor: pointer;
}
/* Next & previous buttons */
.prev,
.next {
cursor: pointer;
position: absolute;
top: 40%;
width: auto;
padding: 16px;
margin-top: -50px;
color: black;
font-weight: bold;
font-size: 20px;
border-radius: 0 3px 3px 0;
user-select: none;
-webkit-user-select: none;
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
background-color: rgba(0, 0, 0, 0.5);
}
/* Number text (1/3 etc) */
.numbertext {
color: black;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
/* Container for image text */
.caption-container {
text-align: center;
background-color: #222;
padding: 2px 16px;
color: white;
}
.row:after {
content: "";
display: table;
clear: both;
}
/* Six columns side by side */
.column {
float: left;
width: 16.66%;
}
/* Add a transparency effect for thumnbail images */
.demo {
opacity: 0.3;
}
.active,
.demo:hover {
opacity: 1;
}
</style>
<body>
<!-- <h2 style="text-align:center">HIIT</h2> -->
<div class="container" >
<div class="mySlides">
<div class="numbertext">1 / 6</div>
<img src="images\warmup4.gif" style="width:60%; height:400px; display: block;margin-left: auto; margin-right: auto; ">
</div>
<div class="mySlides">
<div class="numbertext">2 / 6</div>
<img src="images\one4.gif" style="width:60%; height:400px; display: block;margin-left: auto; margin-right: auto;">
</div>
<div class="mySlides">
<div class="numbertext">3 / 6</div>
<img src="images\two4.gif" style="width:60%; height:400px; display: block;margin-left: auto; margin-right: auto;">
</div>
<div class="mySlides">
<div class="numbertext">4 / 6</div>
<img src="images\three4.gif" style="width:60%; height:400px; display: block;margin-left: auto; margin-right: auto;">
</div>
<div class="mySlides">
<div class="numbertext">5 / 6</div>
<img src="images\four4.gif" style="width:60%; height:400px; display: block;margin-left: auto; margin-right: auto;">
</div>
<div class="mySlides">
<div class="numbertext">6 / 6</div>
<img src="images\cool4.gif" style="width:60%; height:400px; display: block;margin-left: auto; margin-right: auto;">
</div>
<a class="prev" onclick="plusSlides(-1)"> ‹ </a>
<a class="next" onclick="plusSlides(1)"> › </a>
<div class="caption-container">
<p id="caption"></p>
</div>
<div class="row">
<div class="column">
<img class="demo cursor" src="images\t1.jpg" style="width:100%" onclick="currentSlide(1)" alt="Warm Up ">
</div>
<div class="column">
<img class="demo cursor" src="images\t2.jpg" style="width:100%" onclick="currentSlide(2)" alt="Step 1: 20 reps">
</div>
<div class="column">
<img class="demo cursor" src="images\t3.jpg" style="width:100%" onclick="currentSlide(3)" alt="Step 2 : 20 reps">
</div>
<div class="column">
<img class="demo cursor" src="images\t4.jpg" style="width:100%" onclick="currentSlide(4)" alt="Step 3 : 20 reps : Almost there don't give Up!">
</div>
<div class="column">
<img class="demo cursor" src="images\t5.jpg" style="width:100%" onclick="currentSlide(5)" alt="Step 4 : 20 reps : Last One Now Keep Going!!">
</div>
<div class="column">
<img class="demo cursor" src="images\t6.jpg" style="width:100%" onclick="currentSlide(6)" alt="Cool Down : You did it!">
</div>
</div>
</div>
<script>
var slideIndex = 1;
showSlides(slideIndex);
function plusSlides(n) {
showSlides(slideIndex += n);
}
function currentSlide(n) {
showSlides(slideIndex = n);
}
function showSlides(n) {
var i;
var slides = document.getElementsByClassName("mySlides");
var dots = document.getElementsByClassName("demo");
var captionText = document.getElementById("caption");
if (n > slides.length) {slideIndex = 1}
if (n < 1) {slideIndex = slides.length}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
captionText.innerHTML = dots[slideIndex-1].alt;
}
</script>
<p> </p><p> </p><p> </p><p> </p>
</div>
<footer>
<div class="footer">
FOLLOW US
<div id="social-media">
<a href="https://www.instagram.com/rajshree.varma/saved/?hl=en"><img src="https://www.iconfinder.com/data/icons/2018-social-media-black-and-white-logos/1000/2018_social_media_popular_app_logo_facebook-256.png" alt="visit our facebook" class="social"></a>
<a href="https://www.instagram.com/rajshree.varma/saved/?hl=en"><img src="https://www.iconfinder.com/data/icons/2018-social-media-black-and-white-logos/1000/2018_social_media_popular_app_logo_instagram-256.png" alt="visit our instagram " class="social"></a>
<a href="https://www.instagram.com/rajshree.varma/saved/?hl=en"><img src="https://www.iconfinder.com/data/icons/2018-social-media-black-and-white-logos/1000/2018_social_media_popular_app_logo_twitter-256.png" alt="visit our twitter " class="social"></a>
</div>
<br>
<!-- Copyright -->
<div class="footer-copyright" style=" background-color:rgba(255, 255, 255, 0.13);">
© 2020 Copyright:
<a href="homepage.html" style="text-decoration:none; color:rgba(255, 255, 255, 0.281);"> Fitness101.com</a>
All rights reserved.<br>
</div>
<!-- Copyright -->
</div>
</footer>
</body>
</html>