php Bookstrap 登陆界面

php Bookstrap 登陆界面

参考链接: Bootstrap菜鸟教程.

使用Bootstrap模板,utf-8编码,请联网测试

想法均参考网络

<!DOCTYPE html>
<html>
<head>
   <meta charset="utf-8"> 
   <title>在线尝试 Bootstrap 实例</title>
   <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">  
   <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
   <script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
      //(此处插入代码)
</body>
</html>

登陆界面

效果:
php Bookstrap 登陆界面_第1张图片
代码:

<!DOCTYPE html>
<html>
   <head>
      <title>登陆</title>
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
      <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">    
    <style>
    body {
     
    	background-image: url("timg.jpg ");//这里放的图片要在同一目录下
    } 
    </style>
   </head>
   <body>

 <div class="container">
    <div class="col-md-4"></div>
    <div class="col-md-4" style="background-color:#eee;;margin-top:200px;">
        <center>
            <h3></h3>
        </center>
        <form action="3.php" method="POST">//3.php提交的位置
            <div class="form-group">
                <label for="">用户名:</label>
                <input type="text" class="form-control" name="username" style="color:red;">
            </div>
            <div class="form-group">
                <label for="">密码</label>
                <input type="text" class="form-control" name="password" style="color:red;">
            </div>
            <div class="form-group">
                <input type="submit" value="登陆" class="btn btn-primary form-control">
            </div>
        </form>
    </div>
    <div class="col-md-4"></div>
</div>
      <script src="https://code.jquery.com/jquery.js"></script>
      <script src="js/bootstrap.min.js"></script>
   </body>
</html>

你可能感兴趣的:(php)