zoukankan      html  css  js  c++  java
  • 简单的登陆界面

    <!DOCTYPE html>
    <html>
    <head>
     <meta charset="utf-8">
     <title>Login</title>
    </head>
    <body>
     <h2>Login</h2>
     <form action="" method="get" class="form-example">
      <fieldset>
       <div>
        <label for="username">Enter your username</label>
        <input type="text" name="username">
       </div><br>

       <div>
              <label for="password">Enter your password</label>
              <input type="password" id="password" name="password"
                        minlength="10" required
                           placeholder="10 characters minimum"/>
          </div><br>
          <input type="checkbox" id="remember the password" 
              value="remember the password"checked/>
          <label for="remember the password">remember the password
              &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</label>
          <input type="submit" value="Sign in"/><br><br>
          <div>
           <label for="register">If you haven't joined us yet,please click here</label>
           <input type="submit" value="Register">
          </div><br>
          <div>
           <label for="register">If you forget your password,please click here</label>
           <input type="submit" value="Retrieve">
          </div>
         </fieldset>
        </form>
    </body>
    </html>
     
    界面效果:
  • 相关阅读:
    《DSP using MATLAB》Problem 8.9
    《DSP using MATLAB》Problem 8.8
    PID库与PID基本优化(四)
    PID库与PID基本优化(三)
    PID库与PID基本优化(二)
    PID库与PID基本优化(一)
    Mahony姿态解算算法笔记(二)
    《理解矩阵》笔记
    Mahony姿态解算算法笔记(一)
    洛谷p1082 同余方程
  • 原文地址:https://www.cnblogs.com/dabfranklin/p/9942807.html
Copyright © 2011-2022 走看看