PHP登录注册页面

Posted pipasound

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP登录注册页面相关的知识,希望对你有一定的参考价值。

注册(html

<!DOCTYPE html>
<html>
<head>
    <title>注册</title>
    <link rel="stylesheet" href="register.css">
    <meta name="content-type"; charset="UTF-8">
    <style>
body

    margin: 0;
    padding: 0;
   	/*弹性布局 让页面元素垂直+水平居中*/
	display: flex;
	justify-content: center;
	align-items: center;
	/*让页面始终占浏览器可视区域总高度*/
	height: 100vh;
	position: absolute;  flex-direction: column; background-color: red;	flex: 1;
		width: 100%; height: 100%;  background: url(WOW.jpg)  no-repeat; background-size:100% 100%; background-attachment:fixed;
    

.bigBox

    margin: 0 auto;	/* login框剧中 */
    margin-top: 0; /* login框与顶部的距离 */
    padding: 20px 50px;	/* login框内部的距离(内部与输入框和按钮的距离) */
    background-color: #00000090;	/* login框背景颜色和透明度 */
    width: 400px;
    height: 500px;
    border-radius: 10px;	/* 圆角边 */
    text-align: center;	/* 框内所有内容剧中 */

.bigBox h1

    color: white;	/* LOGIN字体颜色 */
    font-family: "Comic Sans MS";

.bigBox .loginButton


    margin-right: 30px;
    margin-top: 20px;	/* 按钮顶部与输入框的距离 */
    margin-bottom: 20px;
    width: 100px;
    height: 25px;
    color: white;	/* 按钮字体颜色 */
    border: 0; /* 删除按钮边框 */
    border-radius: 20px;	/* 按钮圆角边 */
    background-image: linear-gradient(to right, #b8cbb8 0%, #b8cbb8 0%, #b465da 0%, #cf6cc9 33%, #ee609c 66%, #ee609c 100%);	/* 按钮颜色 */

.m-left
    margin-left: 40px;


.m-plc
    margin-right: 30px;
    margin-top: 30px;



.bigBox .login_box 
	/* 相对定位 */
	position: relative;
	width: 100%;

.bigBox .login_box input
	/*清除input框自带的边框和轮廓*/
	outline: none;
	border: none;
	width: 100%;
	padding: 10px 0;
	margin-bottom: 30px;
	color: #fff;
	font-size: 16px;
	border-bottom: 1px solid #fff;
	/*背景颜色为透明色*/
	background-color: transparent;


.bigBox .login_box label
	position:absolute;
	top: 0 ;
	left: 0;
	padding: 10px 0;
	color: #fff;
	/*这个属性的默认值是auto 默认是这个元素可以被点击
	但是如果我们写了none  就是这个元素不能被点击,就好像它可见但是不能用  
	可望而不可及*/
	/*这个就是两者的区别*/
	pointer-events: none;
	/*加个过度*/
	transition: all 0.5s;

/*: focus 选择器是当input获得焦点是触发的样式 + 是相邻兄弟选择器
	去找与input相邻的兄弟label*/
/*:valid 选择器是判断input 框的内容是否合法,如果合法会执行下面的属性代码,
	不合法就不会执行,我们刚开始写布局的时候给input框写了required 我们删掉看对比 
	当没有required的话   input框的值就会被认为一直合法,所以一直都是下方的样式,
	但是密码不会,密码框的值为空,那么这句话就不合法,required不能为空
	当我们给密码框写点东西的时候才会执行以下代码

*/
.bigBox .login_box input:focus + label,
.bigBox  .login_box input:valid + label
	top: -20px;
	color: #f509e1;
	font-size: 12px;


.b a
	/*overflow: hidden;*/
	position: relative;
	padding: 5px 15px;
	color: #fff;
	/*取消a表现原有的下划线*/
	text-decoration: none;
	/*同样加个过渡*/
	transition: all 0.5s;

.b a:hover 
	color: #fff;
	border-radius: 15px;
	background-color: #c8f407;
	box-shadow: 0 0 5px #c8f407,0 0 25px #c8f407,0 0 50px #c8f407,0 0 100px #c8f407;

.b a span
	position: absolute;

.b a span:first-child 
	top: 0;
	left: -100%;
	width: 100%;
	height: 2px;
	/*to right 就是往右边 下面的同理*/
	background: linear-gradient(to right,transparent,#c8f407);
	/*动画 名称  时长 linear是匀速运动 infinite是无限次运动*/
	animation: move1 1s linear infinite;


.b a span:nth-child(2)
	right: 0;
	top: -100%;
	width: 2px;
	height: 100%;
	background: linear-gradient(transparent,#c8f407);
	/*这里多了个0.25s其实是延迟时间*/
	animation: move2 1s linear 0.25s infinite;


.b a span:nth-child(3)
	right: -100%;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(to left,transparent,#c8f407);

	animation: move3 1s linear 0.5s infinite;


.b a span:last-child
	left: 0;
	bottom: -100%;
	width: 2px;
	height: 100%;
	background: linear-gradient(#c8f407,transparent);
	animation: move4 1s linear 0.75s infinite;

/*写一下动画 */
@keyframes move1
	0%
		left: -100%;

	
	50%,
	100%
		left: 100%;
	


@keyframes move2
	0%
		top: -100%;

	
	50%,
	100%
		top: 100%;
	


@keyframes move3
	0%
		right: -100%;

	
	50%,
	100%
		right: 100%;
	


@keyframes move4
	0%
		bottom: -100%;

	
	50%,
	100%
		bottom: 100%;
	

.m-left
    margin-left: 30px;


    </style>
</head>
<body>
<div class="bigBox">
        <h1>注册页面</h1>


        <form action="注册2.php" method="post">
           

            <div class="login_box">
				<input type="text" name='Username' id='Username' required  />
				<label for="name" >Username</label>
			</div>
			<div class="login_box">
				 
				<input type="password" name='Password' id='Password' required="required">
				<label for="pwd">Password</label>
			</div>
            <div class="login_box">
				 
				<input type="password" id="Re_Password" name="Re_Password" required="required">
				<label for="rpwd">Re_Password</label>
			</div>
            <div class="login_box">
                 <input type="password" id="Code" name="Code" size="4" required="required">
                 <label for="yzm">Code</label>
            <a href="javascript:void(0)" onclick="document.getElementById('captcha_img').src='验证码.php?r='+Math.random()">
            <img id="captcha_img" border='1' src='验证码.php?r=echo rand(); ?>' style="width:90px; height:30px" />
            </a></div>
                <div style="color: white;font-size: 12px" >
                <!--提示信息-->
              
                </div>
            
            <div>
                <input type="submit" id="register" name="register" value="注册" class="loginButton m-left">
                <input type="reset" id="reset" name="reset" value="重置" class="loginButton">
            </div>
            <div class="b">
                <a href="登录1.php">
				已有账号,去登录
                <span></span>
				<span></span>
				<span></span>
				<span></span>
            </a>

        </form>
</div>
</body>
</html>

注册(php)

<?php
header("Content-type:text/html;charset=utf-8");
$link = mysqli_connect('localhost','root','');
mysqli_set_charset($link,'utf8'); //设定字符集
mysqli_select_db($link,'login');
$name=$_POST['Username'];
$pwd=$_POST['Password'];
$rpwd=$_POST['Re_Password'];
$code = $_POST['Code'];
if (!$link) 
    die("连接失败: " .mysqli_connect_error());


else if(strlen($pwd) < 5||strlen($pwd)>10)

 echo"<script>alert('你的密码需要5~10位');window.location.href='注册1.php'</script>";
 exit;

else if($rpwd != $pwd)

 echo"<script>alert('你输入的两次密码不一致,请重新输入');window.location.href='注册1.php'</script>";
 exit;

else
    $sql="insert into user(name, password)values('$name','$pwd')";

// 调用mysqli的query方法
if(!(mysqli_query($link,$sql)))
        echo "<script>alert('注册失败');window.location.href='注册1.php'</script>";
else
        echo "<script>alert('注册成功');window.location.href='登录1.php'</script>";
    
?>
```<?php
header("Content-type:text/html;charset=utf-8");
$link = mysqli_connect('localhost','root','');
mysqli_set_charset($link,'utf8'); //设定字符集
mysqli_select_db($link,'login');
$name=$_POST['Username'];
$pwd=$_POST['Password'];
$rpwd=$_POST['Re_Password'];
$code = $_POST['Code'];
if (!$link) 
    die("连接失败: " .mysqli_connect_error());


else if(strlen($pwd) < 5||strlen($pwd)>10)

 echo"<script>alert('你的密码需要5~10位');window.location.href='注册1.php'</script>";
 exit;

else if($rpwd != $pwd)

 echo"<script>alert('你输入的两次密码不一致,请重新输入');window.location.href='注册1.php'</script>";
 exit;
else if($code != $_SESSION['authcode']) 
    echo "<script>alert('验证码错误!重新填写');window.location.href='注册1.html'</script>";
    //判断验证码是否填写正确

else
    $sql="insert into user(name, password)values('$name','$pwd')";

// 调用mysqli的query方法
if(!(mysqli_query($link,$sql)))
        echo "<script>alert('注册失败');window.location.href='注册1.php'</script>";
else
        echo "<script>alert('注册成功');window.location.href='登录1.php'</script>";
    
?>

登录(html)

<!DOCTYPE html>
<html lang="zh-CN">
	<head>
		<meta charset="utf-8" />
		<meta name="viewport" content="width=device-width,initial-scale=1.0" />
		<title>用户登录</title>
		<link rel="stylesheet"  href="index_log.css" />
    <style>
        *
	/*初始化 清除页面元素的内外边距*/
	padding: 0;
	margin: 0;
	/*盒子模型*/
	box-sizing: border-box;

body 
	/*弹性布局 让页面元素垂直+水平居中*/
	display: flex;
	justify-content: center;
	align-items: center;
	/*让页面始终占浏览器可视区域总高度*/
	height: 100vh;
	position: absolute;  flex-direction: column; background-color: red;	flex: 1;
		width以上是关于PHP登录注册页面的主要内容,如果未能解决你的问题,请参考以下文章

如下是php网页代码,但选择登录或注册时无法跳转到对应页面

使用php实现用户注册和登录功能制作 !急求大神帮助!

php登录注册页面

PHP实现一个简陋的注册登录页面

php登录注册页面及加载

php封装一个用户类,里面有登录注册方法,这个要怎么写