3H34N

کاربران
  • تعداد ارسال ها

    1
  • تاریخ عضویت

  • آخرین بازدید

اعتبار در انجمن

10 خوب

درباره 3H34N

  • درجه
    کاربر معمولی
  • تاریخ تولد
  1. بفرمایید: <?php session_cache_limiter('private'); include("../../config.php"); if(is_logged()) { header("Location: ../"); } if(isset($_POST['login'])) { if(is_user($_POST['user_name'],$_POST['user_pass'],$_POST['user_type'])==1) { logon($_POST['user_name'],$_POST['user_type']); header("Location: ../index.php"); } $error="اطلاعات ورودي شما نا معتبر هستند"; } { ?> <!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"> <head> <title>ورود به سيستم</title> <meta name="description" content="" /> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta name="keywords" content="" /> <link rel="stylesheet" type="text/css" href="style.css" title="style" media="screen" /> </head> <div id="news" style="position: absolute; left: 70%; top: 28px;" > <center style="background-image: url(images/orange-desktop-background.jpg);font-family: zar,tahoma;font-size: large" > <?php if(table_exists("news",$db)){ $news=news::get_last_news(5); if($news) { print "<div style='background-color: #99CCFF'>اخبار سايت :</div><br/>"; print "<ul>"; foreach($news as $one_news) { print "<ol><a href='../news/show.php?id=".$one_news->get_value('id')."'>".$one_news->get_value('title').",".$one_news->get_value('date')."</a></ol>"; } print "</ul>"; print "<a style='background-color: #99CCFF' href='../news/'>ليست تمام اخبار</a>"; } } print "<div style='font-size:11;left:18px;top:20px; '><a target='_blank' href='http://weerobots.com' >طراحي و اجرا توسط : حسن ولي پور</a><br/>"; print "hasan.valipour@gmail.com<br/>"; print "تلفن:09363341968</div>"; ?> </center> </div> <body> <div id="wrap"> <?php if(isset($error)) { ?> <div class="idea"> <img src="images/message.png" alt=""/> <p> <center> <h3><?php print $error; ?></h3> </center> </p> </div> <?php } ?> <div class="block"> <form name="log" action="#" method="post"> <div class="left"></div> <div class="right"> <div class="div-row"> <input type="text" id="username" name="user_name" onfocus="this.value='';" onblur="if (this.value=='') {this.value='كد كاربري';}" value="كد كاربري:" /> </div> <div class="div-row"> <input type="password" id="password" name="user_pass" onfocus="this.value='';" onblur="if (this.value=='') {this.value='************';}" value="************" /> </div> <div id="div-row"> <center> <select name="user_type" class="form-login" id="user_type" title="user_type"> <option value="students">دانش آموز</option> <option value="teachers">معلم</option> <option value="parents">والدين</option> <option value="admins">معاونين</option> <option value="manager">مدير</option> </select> </center> </div> <div class="send-row"> <input value="ورود" type="submit" name="login" style="background-image: url(images/login-icon.png);background-repeat: no-repeat;width: 100%;"/> </div> </div> </form> <center style="direction: rtl">در صورت بروز تاخير در لود صفحه را با كليد F5 دوباره لود كنيد</center> </div> </div> </body> </html> <?php } ?>