-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
117 lines (104 loc) · 4.14 KB
/
Copy pathindex.php
File metadata and controls
117 lines (104 loc) · 4.14 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
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
<!DOCTYPE html>
<html lang="en">
<!-- Basic -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Mobile Metas -->
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<!-- Site Metas -->
<title>Appfast - Responsive OnePage HTML5 Template</title>
<meta name="keywords" content="">
<meta name="description" content="">
<meta name="author" content="">
<!-- Site Icons -->
<link rel="shortcut icon" href="resource/images/favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="resource/images/apple-touch-icon.png">
<!-- Site CSS -->
<link rel="stylesheet" href="resource/css/style.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="resource/css/bootstrap.min.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<style>
.width100 {
width: 100%;
}
</style>
</head>
<body class="app_version" data-spy="scroll" data-target="#navbarApp" data-offset="98">
<!-- LOADER -->
<!-- <div id="preloader">
<img class="preloader" src="../images/loaders/loader-app.gif" alt="">
</div> end loader -->
<!-- END LOADER -->
<div class="top-bar">
<div class="container-fluid">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="left-soi">
<ul>
<li class="social-links"><a href="#"><i class="fa fa-apple"></i></a></li>
<li class="social-links"><a href="#"><i class="fa fa-android"></i></a></li>
<li class="social-links"><a href="#"><i class="fa fa-windows"></i></a></li>
</ul>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="right-btn">
<a href="#" class="btn-radius btn-brd">Get Support</a>
</div>
</div>
</div>
</div>
</div>
<header class="header header_style_01">
<nav class="navbar header-nav navbar-expand-lg">
<div class="container">
<a class="navbar-brand" href="index.php"><h1>Quantox Filip</h1></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarApp" aria-controls="navbarApp" aria-expanded="false" aria-label="Toggle navigation">
<span></span>
<span></span>
<span></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarApp">
<ul class="navbar-nav">
<li><a class="nav-link active" href="index.php">Home</a></li>
</ul>
</div>
</div>
</nav>
</header>
<div id="home" class="section lb">
<div class="container">
<div class="section-title text-center">
</div><!-- end title -->
<div class="row">
<div class="col-md-12">
<div class="tab-content">
<div class="tab-pane active fade show" id="tab1">
<div class="row text-center">
<div class="col-md-12">
<?php
require_once("app/connection.php");
if(isset($_GET["student"])) {
include("app/student.php");
} else {
include("app/create.php");
}
?>
</div>
</div><!-- end row -->
</div><!-- end pane -->
</div><!-- end content -->
</div><!-- end col -->
</div><!-- end row -->
</div><!-- end container -->
</div><!-- end section -->
<section class="section nopad cac text-center">
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="resource/js/app.js"></script>
</body>
</html>