search
HomeWeb Front-endJS TutorialDetailed explanation of bootstrap making a login registration page

This article brings you a detailed explanation of bootstrap to create a login registration page. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

The content of this chapter is to use bootstrap to create a login registration page, and use jquery-validate for form verification.
Technology: bootstrap, font-awesome, jquery-validate;
Features: Responsive layout, form validation, background image adaptive screen Size;
Purpose: Learn knowledge from actual combat.

Rendering:
Detailed explanation of bootstrap making a login registration page

Detailed explanation of bootstrap making a login registration page

##html code :

The import of third-party resources is done using cdn; of course, you can also download it yourself and import it locally.

nbsp;html>  
  
      
        <meta>  
        <title>bootstrap案例</title>  
        <!--用百度的静态资源库的cdn安装bootstrap环境-->  
        <!-- Bootstrap 核心 CSS 文件 -->  
        <link>  
        <!--font-awesome 核心我CSS 文件-->  
        <link>  
        <!-- 在bootstrap.min.js 之前引入 -->  
        <script></script>  
        <!-- Bootstrap 核心 JavaScript 文件 -->  
        <script></script>  
        <!--jquery.validate-->  
        <script></script>  
        <script></script>  
        <style>  
            body{background: url(img/4.jpg) no-repeat;background-size:cover;font-size: 16px;}  
            .form{background: rgba(255,255,255,0.2);width:400px;margin:100px auto;}  
            #login_form{display: block;}  
            #register_form{display: none;}  
            .fa{display: inline-block;top: 27px;left: 6px;position: relative;color: #ccc;}  
            input[type="text"],input[type="password"]{padding-left:26px;}  
            .checkbox{padding-left:21px;}  
        </style>  
      
      
        <!--  
            基础知识:  
            网格系统:通过行和列布局  
            行必须放在container内  
            手机用col-xs-*  
            平板用col-sm-*  
            笔记本或普通台式电脑用col-md-*  
            大型设备台式电脑用col-lg-*  
            为了兼容多个设备,可以用多个col-*-*来控制;  
        -->  
    <div>  
        <div>  
            <form>  
                <h3 id="Login-to-your-account">Login to your account</h3>  
                <div>  
                    <div>  
                        <i></i>  
                        <input>  
                    </div>  
                    <div>  
                            <i></i>  
                            <input>  
                    </div>  
                    <div>  
                        <label>  
                            <input> Remember me  
                        </label>  
                        <hr>  
                        <a>Create an account</a>  
                    </div>  
                    <div>  
                        <input>     
                    </div>  
                </div>  
            </form>  
        </div>  
  
        <div>  
            <form>  
                <h3 id="Login-to-your-account">Login to your account</h3>  
                <div>  
                    <div>  
                        <i></i>  
                        <input>  
                    </div>  
                    <div>  
                            <i></i>  
                            <input>  
                    </div>  
                    <div>  
                            <i></i>  
                            <input>  
                    </div>  
                    <div>  
                            <i></i>  
                            <input>  
                    </div>  
                    <div>  
                        <input>  
                        <input>  
                    </div>  
                </div>  
            </form>  
        </div>  
        </div>  
    <script></script>  
      
js code:

$().ready(function() {  
    $("#login_form").validate({  
        rules: {  
            username: "required",  
            password: {  
                required: true,  
                minlength: 5  
            },  
        },  
        messages: {  
            username: "请输入姓名",  
            password: {  
                required: "请输入密码",  
                minlength: jQuery.format("密码不能小于{0}个字 符")  
            },  
        }  
    });  
    $("#register_form").validate({  
        rules: {  
            username: "required",  
            password: {  
                required: true,  
                minlength: 5  
            },  
            rpassword: {  
                equalTo: "#register_password"  
            },  
            email: {  
                required: true,  
                email: true  
            }  
        },  
        messages: {  
            username: "请输入姓名",  
            password: {  
                required: "请输入密码",  
                minlength: jQuery.format("密码不能小于{0}个字 符")  
            },  
            rpassword: {  
                equalTo: "两次密码不一样"  
            },  
            email: {  
                required: "请输入邮箱",  
                email: "请输入有效邮箱"  
            }  
        }  
    });  
});  
$(function() {  
    $("#register_btn").click(function() {  
        $("#register_form").css("display", "block");  
        $("#login_form").css("display", "none");  
    });  
    $("#back_btn").click(function() {  
        $("#register_form").css("display", "none");  
        $("#login_form").css("display", "block");  
    });  
});
Now let’s talk about the knowledge points used:

①bootstrap layout:
bootstrap uses grid layout, using col-x-x
Conditions of use: It can be used under .container and .row. The structure is as follows:

<div>  
   <div>  
      <div></div>  
      <div></div>        
   </div>  
   <div>...</div>  
</div>
Reference value:

col-xs-*: less than 768px, mobile phone
col-sm- *: Greater than 768px, tablet
col-md-*: Greater than 998px, ordinary computer, notebook, etc.
col-lg-*: Greater than 1200px, generally large desktop computer
can be used simultaneously to achieve cross- Multiple device effects
Offset: col-
-offset-

②Form:

The form here is not much different from the ordinary form, so I won’t say more .

③Usage of font-awesome:

The 4.3.0 version is used, and the usage method is

<i></i>
fa-lg represents a large image

More icon reference: http:// fontawesome.dashgame.com/

④jquery-validate form verification:

This is the key point I want to talk about,
The first step: First import jquery-validate third-party resources,
Step 2: Create the form form and initialize validate

$("#login_form").validate({  
        rules: {  
            username: "required",  
            password: {  
                required: true,  
                minlength: 5  
            },  
        },  
        messages: {  
            username: "请输入姓名",  
            password: {  
                required: "请输入密码",  
                minlength: jQuery.format("密码不能小于{0}个字 符")  
            },  
        }  
    });
Note that the login_form here must be the selector on the form form. Because the author set it on p, the console shows an error that settings are not defined. The username and password here are both name values ​​in the form; rules are rules, and message is the prompted information

required: true means that the field is required,
minlength: means that the length is at least 5, maxlength is html5 Supported, so there is no need to set it here
equalTo: means the same as XX, followed by the first value, "#id" or ".class"
message: The corresponding content is followed by Prompt text information.

⑤Background adaptive screen size:

I was looking for documentation everywhere before I knew it, but after knowing it I found it is so simple, that is background-size:cover; This way, the background image can be the same size as the browser . It's very simple!

The above is the entire content of this article. For more free video tutorials related to bootstrap, you can pay attention to the

bootstrap tutorial column on the php Chinese website! ! !

The above is the detailed content of Detailed explanation of bootstrap making a login registration page. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:segmentfault思否. If there is any infringement, please contact admin@php.cn delete
10款好看又实用的Bootstrap后台管理系统模板(快来下载)10款好看又实用的Bootstrap后台管理系统模板(快来下载)Aug 06, 2021 pm 01:55 PM

一个好的网站,不能只看外表,网站后台同样很重要。本篇文章给大家分享10款好看又实用的Bootstrap后台管理系统模板,可以帮助大家快速建立强大有美观的网站后台,欢迎下载使用!如果想要获取更多后端模板,请关注php中文网后端模板栏目!

bootstrap与jquery是什么关系bootstrap与jquery是什么关系Aug 01, 2022 pm 06:02 PM

bootstrap与jquery的关系是:bootstrap是基于jquery结合了其他技术的前端框架。bootstrap用于快速开发Web应用程序和网站,jquery是一个兼容多浏览器的javascript库,bootstrap是基于HTML、CSS、JAVASCRIPT的。

7款实用响应式Bootstrap电商源码模板(快来下载)7款实用响应式Bootstrap电商源码模板(快来下载)Aug 31, 2021 pm 02:13 PM

好看又实用的Bootstrap电商源码模板可以提高建站效率,下面本文给大家分享7款实用响应式Bootstrap电商源码,均可免费下载,欢迎大家使用!更多电商源码模板,请关注php中文网电商源码​栏目!

8款Bootstrap企业公司网站模板(源码免费下载)8款Bootstrap企业公司网站模板(源码免费下载)Aug 24, 2021 pm 04:35 PM

好看又实用的企业公司网站模板可以提高您的建站效率,下面PHP中文网为大家分享8款Bootstrap企业公司网站模板,均可免费下载,欢迎大家使用!更多企业站源码模板,请关注php中文网企业站源码栏目!

bootstrap中sm是什么意思bootstrap中sm是什么意思May 06, 2022 pm 06:35 PM

在bootstrap中,sm是“小”的意思,是small的缩写;sm常用于表示栅格类“.col-sm-*”,是小屏幕设备类的意思,表示显示大小大于等于768px并且小于992px的屏幕设备,类似平板设备。

validate函数的作用是什么validate函数的作用是什么Oct 25, 2023 pm 04:34 PM

validate函数通常用于对输入数据进行验证和检查,以确保其符合特定的规则、格式或条件。其作用是在程序中对输入数据进行合法性验证,以提高数据的准确性、完整性和安全性。通过使用validate函数,可以提前检测和拦截无效或不合法的数据,避免后续代码处理错误或异常情况。

bootstrap默认字体大小是多少bootstrap默认字体大小是多少Aug 22, 2022 pm 04:34 PM

bootstrap默认字体大小是“14px”;Bootstrap是一个基于HTML、CSS、JavaScript的开源框架,用于快速构建基于PC端和移动端设备的响应式web页面,并且默认的行高为“20px”,p元素行高为“10px”。

bootstrap modal 如何关闭bootstrap modal 如何关闭Dec 07, 2020 am 09:41 AM

bootstrap modal关闭的方法:1、连接好bootstrap的插件;2、给按钮绑定模态框事件;3、通过“ $('#myModal').modal('hide');”方法手动关闭模态框即可。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Atom editor mac version download

Atom editor mac version download

The most popular open source editor