-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
115 lines (71 loc) · 3.4 KB
/
index.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
<?php
require "lib/sec.php";
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Ashena Game</title>
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<!--[if IE]>
<style type="text/css">
.clear {
zoom: 1;
display: block;
}
</style>
<![endif]-->
</head>
<body>
<div class="section" id="page"> <!-- Defining the #page section with the section tag -->
<div class="header"> <!-- Defining the header section of the page with the appropriate tag -->
<h1>Ashena Game</h1>
<h3>Ashena world of warcraft game server</h3>
<div class="nav clear"> <!-- The nav link semantically marks your main site navigation -->
<ul>
<li><a href="error_login.php">خروج</a></li>
<li><a href="#"><?=$Logged_User['username']?> - اعتبار <span class="red"><?=number_format($Logged_User['credit']);?></span> ریال</a></li>
</ul>
</div>
</div>
<div class="section" id="articles"> <!-- A new section with the articles -->
<!-- Article 1 start -->
<div class="line"></div> <!-- Dividing line -->
<div class="article" id="article1"> <!-- The new article tag. The id is supplied so it can be scrolled into view. -->
<h2> عملیات
<?=$Logged_User['service_name'];?>
</h2>
<div class="line"></div>
<div class="articleBody clear" id="page_contents">
<?php
if($err->err_list!='')
foreach($err->err_list as $row)
if(!empty($row))
echo '<div class="err">'.$row.'</div>';
if($err->warn_list!='')
foreach($err->warn_list as $row)
if(!empty($row))
echo '<div class="warn">'.$row.'</div>';
if($err->note_list!='')
foreach($err->note_list as $row)
if(!empty($row))
echo '<div class="note">'.$row.'</div>';
include "include/".$Logged_User['step']."_task.php";
?>
</div>
</div>
<!-- Article 1 end -->
</div>
<div class="footer"> <!-- Marking the footer section -->
<div class="line"></div>
<p>Copyright 2013 - ashenagame.ir</p> <!-- Change the copyright notice -->
<a href="#" class="up">Go UP</a>
<a href="http://rahawebdesign.com" class="by">By Rahawebdesign</a>
</div>
</div> <!-- Closing the #page section -->
<!--
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.scrollTo-1.4.2/jquery.scrollTo-min.js"></script>
<script type="text/javascript" src="js/script.js"></script> -->
</body>
</html>