php bootstrap实现简单登录_php技巧

WBOY
Release: 2016-05-16 19:57:19
Original
1133 people have browsed it

本文实例为大家分享了php bootstrap实现简单登录的方法,供大家参考,具体内容如下

这里写图片描述

这里写图片描述

这里写图片描述

所有文件

这里写图片描述

记住是获取name键值对 from 里面 action就是你的动作

signin.html



 
  
  
  
  
  
  
  

  Signin Template for Bootstrap

  
  

  
  

  
  
  

  
  
 
Copy after login

sign.css

body {
 padding-top: 40px;
 padding-bottom: 40px;
 background-color: #eee;
}

.form-signin {
 max-width: 330px;
 padding: 15px;
 margin: 0 auto;
}
.form-signin .form-signin-heading,
.form-signin .checkbox {
 margin-bottom: 10px;
}
.form-signin .checkbox {
 font-weight: normal;
}
.form-signin .form-control {
 position: relative;
 height: auto;
 -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
     box-sizing: border-box;
 padding: 10px;
 font-size: 16px;
}
.form-signin .form-control:focus {
 z-index: 2;
}
.form-signin input[type="email"] {
 margin-bottom: -1px;
 border-bottom-right-radius: 0;
 border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
 margin-bottom: 10px;
 border-top-left-radius: 0;
 border-top-right-radius: 0;
}
Copy after login

form-signin.php

<?php print_r($_GET);?>
Copy after login

以上就是本文的全部内容,希望对大家的学习有所帮助

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact [email protected]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!