login.php 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>问答管理后台</title>
  6. <link href="<?php echo WEB_SITE_GLOBAL ?>/img/admin/global_layout.css" rel="stylesheet" type="text/css" />
  7. <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/jquery-1.7.1.min.js"></script>
  8. <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/admin/over.js"></script>
  9. <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/admin/admin.js"></script>
  10. <style>
  11. html{height:100%}
  12. body{background-color:#D9DEE2;background-image: -moz-linear-gradient(center top , #EBEEF2, #D9DEE2);height: 100%;}
  13. </style>
  14. </head>
  15. <body>
  16. <!--
  17. <div class="warp_login">
  18. <div class="login_item clearfix">
  19. <div class="l_logo lf"></div>
  20. <form name="askform" action="/index/main_do_login" method="post" onsubmit="return login_form()" >
  21. <div class="l_form lf">
  22. <a class="login_help" href="#" title="系统登录帮助"></a>
  23. <dl>
  24. <dt>您要登录的是</dt>
  25. <dd><select><option>纵横问答</option></select></dd>
  26. <dt>账号</dt>
  27. <dd><input type="text" id="name" name="name" value="<?php echo $data['user_info']['username']; ?>" /></dd>
  28. <dt>密码</dt>
  29. <dd><input type="password" name="password" id="password" /></dd>
  30. <dt class="clearfix" style="text-align:center"><input type="submit" class="login_btn" value="登录" /></dt>
  31. </dl>
  32. </div>
  33. </form>
  34. </div>
  35. <div class="copyright">Copyright © 2012 Zhzdjg.com Inc. All rights reserved 纵横软件 版权所有</div>
  36. </div>-->
  37. <div class="warp_login">
  38. <form name="askform" action="/index/main_do_login" method="post" onsubmit="return login_form()">
  39. <div id="login">
  40. <h1>问答后台</h1>
  41. <fieldset id="inputs">
  42. <input id="username" name="name" type="text" placeholder="输入帐号" autofocus required>
  43. <input id="password" name="password" type="password" placeholder="输入密码" required >
  44. </fieldset>
  45. <fieldset id="actions">
  46. <input type="submit" id="submit" value="登 录" name="submit" /><a href="http://admin.zhzdwk.com" target="_blank">文库后台</a><a href="http://zhzdwd.com/index/main_admin" target="_blank">价格信息后台</a>
  47. </fieldset>
  48. </div>
  49. </form>
  50. </div>
  51. </body>
  52. </html>