微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Spring、Bootstrap简单项目练习02/04

Spring、Bootstrap简单项目练习(01/04) - 新建后台登陆页面

Bootstrap模板

一个基于Bootstrap的免费管理仪表板模板项目:https://github.com/ColorlibHQ/AdminLTE

  • 导入需要的组件、样式、插件

image.png

image.png

image.png

编写相应的登录页面

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<!DOCTYPE html>
<html>
<%--  Head Begin  --%>
<head>
    <Meta charset="utf-8">
    <Meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title>MyShop | Login</title>
    <!-- Tell the browser to be responsive to screen width -->
    <Meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport" />
    <!-- Bootstrap 3.3.7 -->
    <link rel="stylesheet" href="assets/bower_components/bootstrap/dist/css/bootstrap.min.css" />
    <!-- Font Awesome -->
    <link rel="stylesheet" href="assets/bower_components/font-awesome/css/font-awesome.min.css" />
    <!-- Ionicons -->
    <link rel="stylesheet" href="assets/bower_components/Ionicons/css/ionicons.min.css" />
    <!-- Theme style -->
    <link rel="stylesheet" href="assets/css/AdminLTE.min.css" />
    <!-- iCheck -->
    <link rel="stylesheet" href="assets/plugins/iCheck/square/blue.css" />
</head>
<%--  Head End  --%>

<body class="hold-transition login-page">
<div class="login-Box">
    <div class="login-logo">
        <a href="#">MyShop</a>
    </div>
    <!-- /.login-logo -->

    <div class="login-Box-body">
        <p class="login-Box-msg">管理员登录</p>

        <form action="#" method="post">
            <div class="form-group has-Feedback">
                <input type="email" class="form-control" placeholder="邮箱">
                <span class="glyphicon glyphicon-envelope form-control-Feedback"></span>
            </div>
            <div class="form-group has-Feedback">
                <input type="password" class="form-control" placeholder="密码">
                <span class="glyphicon glyphicon-lock form-control-Feedback"></span>
            </div>
            <div class="row">
                <div class="col-xs-8">
                    <div class="checkBox icheck">
                        <label>
                            <input type="checkBox"> 记住密码
                        </label>
                    </div>
                </div>
                <!-- /.col -->
                <div class="col-xs-4">
                    <button type="submit" class="btn btn-primary btn-block btn-flat">登录</button>
                </div>
                <!-- /.col -->
            </div>

            <a href="#">忘记密码?</a><br>

        </form>


    </div>

</div>

<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->

<!-- jQuery 3 -->
<script src="assets/bower_components/jquery/dist/jquery.min.js"></script>
<!-- Bootstrap 3.3.7 -->
<script src="assets/bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- iCheck -->
<script src="assets/plugins/iCheck/icheck.min.js"></script>
<script>
    $(function () {
        $('input').iCheck({
            checkBoxClass: 'icheckBox_square-blue',
            radioClass: 'iradio_square-blue',
            increaseArea: '20%' /* optional */
        });
    });
</script>
</body>
</html>

效果

image.png

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐