1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>问答管理后台</title>
- <link href="<?php echo WEB_SITE_GLOBAL ?>/img/admin/global_layout.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/jquery-1.7.1.min.js"></script>
- <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/admin/over.js"></script>
- <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/admin/admin.js"></script>
- <style>
- html{height:100%}
- body{background-color:#D9DEE2;background-image: -moz-linear-gradient(center top , #EBEEF2, #D9DEE2);height: 100%;}
- </style>
- </head>
- <body>
- <!--
- <div class="warp_login">
- <div class="login_item clearfix">
- <div class="l_logo lf"></div>
- <form name="askform" action="/index/main_do_login" method="post" onsubmit="return login_form()" >
- <div class="l_form lf">
- <a class="login_help" href="#" title="系统登录帮助"></a>
- <dl>
- <dt>您要登录的是</dt>
- <dd><select><option>纵横问答</option></select></dd>
- <dt>账号</dt>
- <dd><input type="text" id="name" name="name" value="<?php echo $data['user_info']['username']; ?>" /></dd>
- <dt>密码</dt>
- <dd><input type="password" name="password" id="password" /></dd>
- <dt class="clearfix" style="text-align:center"><input type="submit" class="login_btn" value="登录" /></dt>
- </dl>
- </div>
- </form>
- </div>
- <div class="copyright">Copyright © 2012 Zhzdjg.com Inc. All rights reserved 纵横软件 版权所有</div>
- </div>-->
- <div class="warp_login">
- <form name="askform" action="/index/main_do_login" method="post" onsubmit="return login_form()">
- <div id="login">
- <h1>问答后台</h1>
- <fieldset id="inputs">
- <input id="username" name="name" type="text" placeholder="输入帐号" autofocus required>
- <input id="password" name="password" type="password" placeholder="输入密码" required >
- </fieldset>
- <fieldset id="actions">
- <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>
- </fieldset>
- </div>
- </form>
- </div>
- </body>
- </html>
|