zoukankan      html  css  js  c++  java
  • php 实现简单的登录

    //登录页面:
    
    V层前端模板:
    
    Administrator@QCEE61NZ66FEX2D /cygdrive/c/wamp/www/thinkphp/Home/Tpl/Login
    $ ls
    index.html
    
    <!doctype html>
    <html lang="en">
     <head>
    
      <meta name="Generator" content="EditPlus?">
      <meta name="Author" content="">
      <meta name="Keywords" content="">
      <meta name="Description" content="">
      <title>Document</title>
     </head>
     <body>
      <!doctype html>
    <html lang="en">
     <head>
    
      <meta name="Generator" content="EditPlus?">
      <meta name="Author" content="">
      <meta name="Keywords" content="">
      <meta name="Description" content="">
      <title>Document</title>
     </head>
     <body>
     <center>
     <h1>中均运维管理平台</h1>
       <!--图片标签-->
    <img src="__PUBLIC__/Images/scan.jpg"/>
     </center>
     <form>
     <center>
     用户名:<input type='text' name='username'/><br/>
     
     密 码:<input type='passwords' name='password'/><br/>
     
     验证码:<input type='text' name='code'/><br/>
     
     <input type='submit'/>
      <center/>
    <!-- <table width="600" hborder="0" cellspacing="0" cellpadding="0">
    
    <tr>
    
    <td>用户名:</td>
    <td><input type="text" name="username"/></td>
    
    <td>密码:</td>
    <td><input type="password" name="password"/></td>
    
    <td><input type="button" name="login" value="login"/></td>
    
    </tr> -->
    
    
    
     </form>
    
    
      
    
     </body>
    </html>
    
     </body>
    </html>
    
    
    // C层类
    
    Administrator@QCEE61NZ66FEX2D /cygdrive/c/wamp/www/thinkphp/Home/Lib/Action
    $ ls -ltr LoginAction.class.php
    
    <?php
     class LoginAction extends Action {
    	 function index(){
    		 $this->display();
    	 }
    }
    ?>
    

  • 相关阅读:
    Mybatis的基本步骤
    Log笔记
    通过vue-cli脚手架创建VUE项目
    c语言字符相关函数
    嵌入式:电路设计之三极管基础电路设计
    晶体三极管进行双路控制驱动电路设计
    三极管实用
    再谈一维数组、二维数组与指针、数组指针
    光电耦合器工作原理详细解说
    任务控制块
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13350864.html
Copyright © 2011-2022 走看看