管理面板的用户注册和登录以及用户管理系统

这是一个小型项目,此项目在两个模块中进行描述。 一个是用户模块,第二个是管理面板。同时也讲解了如何使用管理面板项目运行用户注册和登录以及用户管理系统。

预览截图

应用介绍

此项目介绍了管理面板的用户注册和登录以及用户管理系统,引用了bootstrap框架。同时也讲解了如何使用管理面板项目运行用户注册和登录以及用户管理系统。本人只展示了一部分php代码,如想详细了解请点击下方链接下载附件。

<?php
session_start();
include("dbconnection.php");
if(isset($_POST['login']))
{
  $adminusername=$_POST['username'];
  $pass=md5($_POST['password']);
$ret=mysqli_query($con,"SELECT * FROM admin WHERE username='$adminusername' and password='$pass'");
$num=mysqli_fetch_array($ret);
if($num>0)
{
$extra="manage-users.php";
$_SESSION['login']=$_POST['username'];
$_SESSION['id']=$num['id'];
echo "<script>window.location.href='".$extra."'</script>";
exit();
}
else
{
$_SESSION['action1']="*Invalid username or password";
$extra="index.php";
echo "<script>window.location.href='".$extra."'</script>";
exit();
}
}
?>

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="">
    <meta name="author" content="Dashboard">
    <meta name="keyword" content="Dashboard, Bootstrap, Admin, Template, Theme, Responsive, Fluid, Retina">
    <title>Admin | Login</title>
    <link href="assets/css/bootstrap.css" rel="stylesheet">
    <link href="assets/font-awesome/css/font-awesome.css" rel="stylesheet" />
    <link href="assets/css/style.css" rel="stylesheet">
    <link href="assets/css/style-responsive.css" rel="stylesheet">
  </head>
  <body>
   <div id="login-page">
    <div class="container">
      
    
        <form class="form-login" action="" method="post">
          <h2 class="form-login-heading">sign in now</h2>
                  <p style="color:#F00; padding-top:20px;" align="center">
                    <?php echo $_SESSION['action1'];?><?php echo $_SESSION['action1']="";?></p>
          <div class="login-wrap">
              <input type="text" name="username" class="form-control" placeholder="User ID" autofocus>
              <br>
              <input type="password" name="password" class="form-control" placeholder="Password"><br >
              <input  name="login" class="btn btn-theme btn-block" type="submit">
           
          </div>
        </form>    
    
    </div>
   </div>
    <script src="assets/js/jquery.js"></script>
    <script src="assets/js/bootstrap.min.js"></script>
    <script type="text/javascript" src="assets/js/jquery.backstretch.min.js"></script>
    <script>
        $.backstretch("assets/img/login-bg.jpg", {speed: 500});
    </script>

  </body>
</html>

文件列表(部分)

名称 大小 修改日期
User Registration and login System with admin panel0.00 KB2019-07-24
loginsystem0.00 KB2019-07-04
admin0.00 KB2019-07-04
assets0.00 KB2019-07-04
.DS_Store15.00 KB2015-06-00
css0.00 KB2019-07-04
.DS_Store6.00 KB2015-06-06
bootstrap.css135.50 KB2015-06-06
style-responsive.css6.85 KB2015-06-04
style.css40.86 KB2015-06-04
table-responsive.css2.92 KB2015-06-02
to-do.css1.85 KB2015-06-02
zabuto_calendar.css3.69 KB2015-06-02
font-awesome0.00 KB2019-07-04
.DS_Store6.00 KB2015-06-12
css0.00 KB2019-07-04
.DS_Store6.00 KB2015-06-10
font-awesome.css26.14 KB2015-06-08
fonts0.00 KB2019-07-04
.DS_Store6.00 KB2015-06-20
fontawesome-webfont.eot70.75 KB2015-06-18
fontawesome-webfont.svg248.04 KB2015-06-18
fontawesome-webfont.ttf138.25 KB2015-06-16
fontawesome-webfont.woff81.80 KB2015-06-14
FontAwesome.otf73.43 KB2015-06-22
fonts0.00 KB2019-07-04
.DS_Store6.00 KB2015-06-26
glyphicons-halflings-regular.eot19.86 KB2015-06-26
glyphicons-halflings-regular.svg61.67 KB2015-06-26
glyphicons-halflings-regular.ttf40.31 KB2015-06-24
glyphicons-halflings-regular.woff22.77 KB2015-06-22
img0.00 KB2019-07-04

立即下载

相关下载

[管理面板的用户注册和登录以及用户管理系统] 这是一个小型项目,此项目在两个模块中进行描述。 一个是用户模块,第二个是管理面板。同时也讲解了如何使用管理面板项目运行用户注册和登录以及用户管理系统。

评论列表 共有 0 条评论

暂无评论

微信捐赠

微信扫一扫体验

立即
上传
发表
评论
返回
顶部