-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhead.php
More file actions
67 lines (58 loc) · 2.78 KB
/
head.php
File metadata and controls
67 lines (58 loc) · 2.78 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Tell the browser to be responsive to screen width -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<!-- Favicon icon -->
<link rel="icon" type="image/png" sizes="16x16" href="./assets/uploadImage/Logo/favicon.png">
<?php
include('./constant/connect.php');
// $sql_head_title = "select * from manage_website";
// $result_head_title = $conn->query($sql_head_title);
// $row_head_title = mysqli_fetch_array($result_head_title);
?>
<title>Swim Club Membership Management</title>
<link href="./assets/css/lib/chartist/chartist.min.css" rel="stylesheet">
<link href="./assets/css/lib/owl.carousel.min.css" rel="stylesheet" />
<link href="../assets/css/lib/owl.theme.default.min.css" rel="stylesheet" />
<!-- Bootstrap Core CSS -->
<link href="./assets/css/lib/bootstrap/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="./assets/css/helper.css" rel="stylesheet">
<link href="./assets/css/style.css" rel="stylesheet">
<link rel="stylesheet" href="./assets/css/lib/html5-editor/bootstrap-wysihtml5.css" />
<link href="./assets/css/lib/calendar2/semantic.ui.min.css" rel="stylesheet">
<link href="./assets/css/lib/calendar2/pignose.calendar.min.css" rel="stylesheet">
<link href="./assets/css/lib/sweetalert/sweetalert.css" rel="stylesheet">
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript">
google.charts.load('current', {'packages':['corechart']});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Year', 'Sales', 'Expenses'],
['2004', 1000, 400],
['2005', 1170, 460],
['2006', 660, 1120],
['2007', 1030, 540]
]);
var options = {
title: 'Company Performance',
curveType: 'function',
legend: { position: 'bottom' }
};
var chart = new google.visualization.LineChart(document.getElementById('curve_chart'));
chart.draw(data, options);
}
</script>
</head>
<body class="fix-header fix-sidebar">
<!-- Preloader - style you can find in spinners.css -->
<div class="preloader">
<svg class="circular" viewBox="25 25 50 50">
<circle class="path" cx="50" cy="50" r="20" fill="none" stroke-width="2" stroke-miterlimit="10" /> </svg>
</div>