您的位置:首页 > 其它

登录界面

2016-07-25 14:43 190 查看
<html>

  <head>

    <base href="<%=basePath%>">

    

    <title>My JSP 'index.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">    
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
<style type="text/css">

      body {

        background-color: #ffffff;

      }

      .login-form-row{margin-bottom:12px;margin-top:12px;position:relative;}

      .login-form-row label{cursor:text;display:none;color:#CCCCCC;padding:0 0 0 10px;line-height:30px;margin:0;position:absolute;margin-right:10px;}

      .login-form-row input[name="userName"],

      .login-form-row input[name="_password"]

      {margin:0;width:206px;height:26px;border-radius:0;box-shadow:none;line-height:26px;}

      .login-form-row label {font-size:14px;line-height:36px;}

    </style>

  </head>

  

  <body>

       <div class="data-login-middle">

    <div class="data-login-top">
     <div class="data-logo data-login-center">
       <img src="skin/red/image/logo.png" alt=""><span class="data-login-sitename">${SoftwareName}</span>
     </div>
   </div>
 <div class="data-login-wrap">
  <div class="data-login data-login-center">
       <form class="data-login-form" action="login!login.action" method="post">
         <fieldset>
           <legend>欢迎登录</legend>
           
           <label class="alert-error" style="background-color:transparent;">
           
<%
           
String errorInfo = (String)request.getAttribute("error");

           
if(null!=errorInfo){
           
out.print(errorInfo);
           
}            

           
%>
           </label>
           <div class="login-form-row">
           <label>用户名</label>
           <input type="text" name="userName" placeholder="用户名" maxlength="20">
         </div>
         <div class="login-form-row">
           
<label>密 码</label>
           <input type="password" name="_password" placeholder="密 码" maxlength="20">
           </div>
         <input type="hidden" name="password">
<!--            <label class="checkbox">
             <input type="checkbox">记住密码
           </label>  -->
           <button class="btn btn-login" type="submit" onClick="submitFunc();return false;">登 录</button>           <!-- <div id='licenseInfo' class="data-hide"></div> -->
           <div id='dogInfo' class="data-hide"></div>
         </fieldset>
       </form>
     </div>
 </div>

      

    </div>

    <div class="data-login-bottom">

      <p ${VersionType==0 ? "" : "class='hide'"}><span class="data-login-copyright">版权所有</span></p>

      <p id='licenseInfo' class="data-hide"></p>

    </div>   
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: