Home > Web Front-end > HTML Tutorial > Login page_html/css_WEB-ITnose

Login page_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:52:05
Original
1455 people have browsed it

<%@ page language="java" import="java.util.*" pageEncoding="GBK"%>



Login






Super administrator login










< td>







Username:
Password:
Verification Code:
Verification code
Can’t see clearly, please change one







<%
if(request.getParameter("submit")!=null){
//First get the real 4 numbers on the picture of the verification code itself
String rcode = (String)session.getAttribute("rand");
//Get the verification code entered by the user
String code = request.getParameter("code");
//Determine whether the user input is correct
if(rcode.equals(code)){
%>
The verification code is correct! !
<%
}else{
%>
The verification code is incorrect! !
<%
}

}
%>


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template