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>
     
    界面效果:
  • 相关阅读:
    HBase之表状态
    HBase之show table
    HBase之表空间
    HBase之创建表
    php 正则截取文章图片
    容器,表格 ,div,元素可左右拖动,滚动 css
    php 爬虫简单示例
    Typecho 调用分类文章列表
    Typecho 独立页面 添加自定义模板
    php 类与对象 面向对象编程 简单例子
  • 原文地址:https://www.cnblogs.com/dabfranklin/p/9942807.html
Copyright © 2011-2022 走看看