-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspeedtest.php
38 lines (38 loc) · 1.07 KB
/
speedtest.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
<?php
include('auth.php');
check_session();
?>
<!doctype html>
<html lang="en">
<head>
<?php
$title = "SpeedTest";
include("head.php");
?>
</head>
<body>
<div id="app">
<?php include('navbar.php'); ?>
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-12 mx-auto mt-4 mb-2">
<div class="card">
<div class="card-header">
<div class="text-center">
<h3><i class="fa fa-arrows-v"></i> SpeedTest</h3>
</div>
</div>
<div class="card-body">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="//openspeedtest.com/Get-widget.php" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
<?php include('footer.php'); ?>
</div>
</div>
<?php include("javascript.php"); ?>
</body>
</html>