-
Notifications
You must be signed in to change notification settings - Fork 9
/
top.php
156 lines (135 loc) · 4.18 KB
/
top.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<?php
############################################
# ThaiRIS (Thai Radiology Information System)
# Version: 1.0
# File last modified: 8 Nov 2016
# File name:
# Description :
# http://www.thairis.net
# Email : [email protected]
############################################
include ("session.php");
header("Content-type: text/html; charset=utf-8");
?>
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620" />
<title>Thai RIS</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link href="css/home_style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src='Scripts/jquery-1.4.4.js'></script>
<script type="text/javascript" src="Scripts/jquery-ui-1.8.10.custom.min.js"></script>
<script type="text/javascript" src="Scripts/PM.UIPage.Home.js"></script>
<script type="text/javascript" src="Scripts/PM.UIPage.js"></script>
<script type="text/javascript" src="Scripts/jquery.jclock.js"></script>
<script language=JavaScript src="frames_header_array_<?php echo $LANGUAGE; ?>.js" type=text/javascript></script>
<script language=JavaScript src="mmenu.js" type=text/javascript></script>
<script type="text/javascript">
$(function($) {
var options = {
timeNotation: '12h',
am_pm: true,
fontFamily: 'Verdana',
fontSize: '16px',
foreground: 'black'
};
$('.jclock').jclock(options);
});
</script>
</head>
<body>
<div id="header">
<div id="main-menu">
<ul id="navigation">
<li class="home">
</li>
<li class="line"> </li>
<li class="register">
</li>
<li class="line"> </li>
<li class="order">
</li>
<li class="line"> </li>
<li class="operate">
</li>
<li class="line"> </li>
<li class="reporting">
</li>
<li class="line"> </li>
<li class="search">
</li>
<li class="line"> </li>
<li class="reports">
</li>
<li class="line"> </li>
<li class="management">
</li>
<li class="line"> </li>
<li class="help">
</li>
<li class="line"> </li>
</ul>
<div id="account-status">
<style>
<?php
$filename = "images/user/".$userid.".jpg";
if (file_exists($filename))
{
$display=$filename;
}
$filename1 = "images/user/".$userid.".png";
if (file_exists($filename1))
{
$display=$filename1;
}
$filename2 = "images/user/".$userid.".gif";
if (file_exists($filename2))
{
$display=$filename2;
}
if ($display=='')
{
$display="tmp/display.png";
}
?>
#account-status .photo-display2
{
background:#FFF url(<?php echo $display; ?>) no-repeat;
background-size:82px 82px;
height:82px;
width:82px;
float:left;
}
</style>
<div class="photo-display2">
<div class="photo-frame">
</div>
</div>
<div class="Acc-Info">
<h2>Code :
<?php
echo $usercode;
?>
</a></h2>
<h2>User :
<?php
echo "<a href=usercode.php target=main>".$username." ".$userlastname."</a>";
?>
</h3></h2>
<h2>Login since :
<?php
echo $logintime;
?>
</h2>
<br/>
<!-- donot remove the link, for our credit -->
<a href=http://www.thairis.net target=_blank><font size=1 color=yellow><b>ThaiRIS.Net</a> Free Version1.0</b></font>
</div>
<div class="Acc-Status">
<a href=logoff.php target=_top><img src="image/exit.png" width="32" height="32" border=0 /></a></div>
</div>
</div>
</div>
</body>
</html>