-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
48 lines (37 loc) · 1.83 KB
/
index.php
File metadata and controls
48 lines (37 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en" xml:lang="en" itemscope="itemscope" itemtype="http://schema.org/Organization">
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=yes">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="robots" content="noindex">
<title>Course PHP Basic - Admin</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php include_once 'includes/css.php'; ?>
</head>
<body>
<?php include_once 'includes/side-bar.php'; ?>
<div class="container">
<legend>Welcome</legend>
<div class="row">
<div class="col-md-10 content">
<div class="panel panel-default">
<div class="panel-heading">
Dashboard
</div>
<div class="panel-body">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</div>
</div>
</div>
</div>
</div>
<?php include_once 'includes/js.php'; ?>
</body>
</html>