-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtamu_home.php
227 lines (110 loc) · 3.19 KB
/
tamu_home.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
<?PHP
session_start();
if (!isset($_SESSION["logged_in"]) OR $_SESSION["logged_in"]==false)
{
header("location:login.php");
}
else
{
echo
"
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
<title>Untitled Document</title>
<link href='CSS/latih_block.css' rel='stylesheet' type='text/css' />
</head>
<body>
<div id='container'>
<div id='header'>
<div id='header_kanan'>
<div class='header_kanan__tombol'>
<a href='profil.php'>
<img src='images/profile.png' alt='Profil'/>
</a>
</div>
<div class='header_kanan__tombol'>
<a href='pengaturan.php'>
<img src='images/settings.png' alt='Pengaturan'/>
</a>
</div>
<div class='header_kanan__tombol'>
<a href='bantuan.php'>
<img src='images/help.png' alt='Bantuan'/>
</a>
</div>
<div class='header_kanan__tombol'>
<a href='logout.php'>
<img src='images/logout.png' alt='Keluar' class='header_kanan__tombol'/>
</a>
</div>
</div>
<div id='header_kiri'>
<a href='index.php'>
<img src='images/telmed_logo_transparan.png' alt='Tel-Med' style='height:40px; margin:0 auto; display:block' />
</a>
</div>
<div id='header_tengah'>
<form action='CARI.php' method='GET'>
<input type='text' name='CARI' value='Cari...' style='width: calc(100% - 4px); height:35px'/>
</form>
</div>
</div>
<div id='content'>
<div id='content_kiri'>
Tel-Med Notes Sharing<br />
Kategori:<br />
<ul>
<li>Fakultas Ekonomi dan Bisnis</li>
<li>Fakultas Ilmu Terapan</li>
<li>Fakultas Industri Kratif</li>
<li>Fakultas Komunikasi dan Bisnis</li>
<li>Fakultas Rekayasa Industri</li>
<li>Fakultas Teknik Elektro</li>
<li>Fakultas Teknik Informatika</li>
</ul>
</div>
<div id='content_kanan'>
Tel-Med Instant Shopping<br />
Kategori:<br />
<ul>
<li>Bahan Makanan</li>
<li>Makanan Siap Saji</li>
<li>Fakultas Industri Kratif</li>
<li>Fakultas Komunikasi dan Bisnis</li>
<li>Fakultas Rekayasa Industri</li>
<li>Fakultas Teknik Elektro</li>
<li>Fakultas Teknik Informatika</li>
</ul>
</div>
<div id='content_tengah'>
<div class='content_tegah_content'>
<br />
<br />
<br />";
if (isset($_GET["halaman"]))
{
$halaman=$_GET["halaman"];
$target=$halaman.".php";
require $target;
}
else
{
require "user_home.isi_halaman.php";
}
//require "user_home.isi_halaman.php";
echo
"
</div>
</div>
</div>
<div id='footer' data-role='footer' data-position='fixed'>
Telkom University Media<br />
Copyright 2017 by I Gusti Bagus Vayupranaditya Putraadinatha
</div>
</div>
</body>
</html>";
}
?>