首页 > 其他分享 >4.21

4.21

时间:2023-04-28 21:23:33浏览次数:37  
标签:status String 360px height width 4.21 div

学习时间:2h

代码量:200

我今天上了软件工程课,小组作业写的不太合格,我们争取这个假期结束之前完成更改

我开始了补习html遗漏的知识,学习了很多的标签,和很多属性

<%@page import="DAO.dao"%>
<%@ page import="java.sql.*" language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<jsp:useBean id="dao" class="DAO.dao" scope="page"/>
<%

request.setCharacterEncoding("utf-8");
String id=(String)request.getParameter("id");
String password=(String)request.getParameter("password");
int status=dao.panduan(id);
String getstatus=String.valueOf(status);
session.setAttribute("status", status);
Cookie c1 = new Cookie("id",id);// 新建一个Cookie对象
Cookie c2 = new Cookie("password",password);
Cookie c3 = new Cookie("status",getstatus);
c1.setMaxAge(60*60);
c1.setMaxAge(60*60);
c3.setMaxAge(60*60);
response.addCookie(c1);
response.addCookie(c2);
response.addCookie(c3);
if(password.equals(dao.search(id))){
if(status==1||status==2||status==3){
response.sendRedirect("main.jsp");
}
}else{
out.print("<script language='javaScript'> alert('账号错误');</script>");
response.setHeader("refresh", "0;url=login.jsp");
}


%>
</body>
</html>

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
</head>
<style>
body {
background-color: gainsboro;
font-size: 16px;
}

.div_top_1 {
height: 140px;
width: 100%;
}

.div_top_2 {
height: 50px;
width: 100%;
}

.main {
width: 417.683px;
height: 440px;
background-color: #FFFFFF;
margin: 0 auto;

}

.login {

width: 360px;
height: 360px;
background-color: #FFFFFF;
margin: 0 auto
}

.div_login_head {
height: 36px;
background-color: #FFFFFF;
margin: 0 auto;
line-height: 36px;
text-align: center;
color: #666;
border-bottom: 3px solid #21b351;
font-size: 18px;
line-height: 24px;
margin-bottom: -1px;
font-family: "PingFang SC", "Microsoft yahei", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.div_input_account {
width: 360px;
height: 40px;

}

.div_input_pwd {
width: 360px;
height: 24px;

}

.input_account, .input_pwd {
width: 360px;
height: 40px;
border: none;
border-bottom: #ddd 1px solid;
border-radius: 0;
outline: 0;
font: inherit;
font-size: .875rem;
}

.div_button_login {
width: 360px;
height: 40px;
margin-top: 36px;
text-align: center;

}

.button_login {
width: 180px;
height: 40px;
background: #1fa54a;
font-size: 16px;
cursor: pointer;
color: white;
border: none;
border-radius: 2px;
outline: 0;

}

.div_empty {
width: 360px;
height: 24px;

}
.div_error {
width: 360px;
height: 24px;
text-align: center;
}
.span_error{

color: #e35b5a;
font-size: 13px;
}
</style>
<body>
<title>人脸识别登录页面</title>
<div class="center" align="center" >
<h1 style="color:blue">欢迎登录人脸识别签到系统</h1>

<div class="div_top_1">


</div>
<div class="main">
<div class="login">
<div class="div_top_2">

</div>
<div class="div_login_head">
密码登录
</div>

<div class="div_empty">
</div>
<form action="check.jsp" method="get">
<div class="div_input_account">
<input class="input_account" type="text" name="id" placeholder="用户名" value="${userName }"/>
</div>

<div class="div_empty">
</div>


<div class="div_input_pwd">
<input class="input_pwd" type="password" name="password" placeholder="密码" value="${password }"/>
</div>
<div class="div_empty">
</div>
<div class="div_error">
<span class="span_error"> ${errorMessage }</span>
</div>
<div class="div_button_login">
<input class="button_login" type="submit" value="登&nbsp;&nbsp;录"/>
</div>
<div >
<br><a href="zhuce.jsp">没有账号?注册</a>
</div>
</form>
</div>


</div>

</div>
</body>
</html>

 

标签:status,String,360px,height,width,4.21,div
From: https://www.cnblogs.com/zhaoshengfu/p/17363179.html

相关文章

  • 4.21今日总结
    内置信号和自定义槽使用实例实现过程同上述步骤一样。槽函数showMsg为自定义函数。信号与槽:self.pushButton.clicked.connect(self.showMsg)完整代码如下(可直接拷贝运行,字体加粗部分为添加部分):#-*-coding:utf-8-*-#Formimplementationgeneratedfromreadinguifile......
  • JS课堂笔记(4.17-4.21)
    一、循环 1.在程序中,一组被重复执行的语句被称为循环体,能否继续重复执行,取决于循环的终止条件。由循环体及循环的终止条件组成的语句,被称为循环语句。2.循环执行的过程是①第一次循环:第一次赋值,然后条件判断,执行循环体,最后执行累计。②非第一次循环:条件判断,执行循环体,最后执行......
  • 4.21打卡
    一、问越描述:编写用牛顿迭代法求方程更的函数。方程为ax^3+bx^2+cx+d=0,系数a,b,c,d由主函数输入。求x在1附近的一个实根。求出根后,由主函数输出。牛顿迭代法的共识是:x=x0-f(x0)/f´(x0),设迭代到|x-x0|<=10e(-5).二、设计思路:1、输入系数a,b,cd;2、构造迭代函......
  • 4.21
    #include<iostream>usingnamespacestd;intmain(){ int**a; introw,col,i,j; cout<<"请输出矩阵的行数和列数:"; cin>>row>>col; a=newint*[row]; for(i=0;i<row;i++) *(a+i)=newint[col]; cout<<"请输出"<<row<......
  • 4.21
    所花时间(包括上课):5h代码量(行)300行博客量(篇):1篇下午学习了一下午去Z自习室我了解到的知识点:我学习了html的一些标签并认真做的笔记,改了项目的一些内容,认真复习了web的一些知识遇到的问题:人脸识别系统我不会调用接口<%@pagelanguage="java"contentType="text/html;charset......
  • 4.21每日总结
    昨天的成就:修复拍照获得图片模糊遇到什么困难:之前拍照获得的图片并没有存储到本地,而是直接在onActivityResult中返回一个bitmap缩略图,所以导致图片模糊,识别不出来有效信息,现在改成存储到本地,在识别时在调用路径就可以解决今天的任务:尝试支付宝截图的识别......
  • 2023.4.21编程一小时打卡
    一、问题描述: 定义时钟类,单目运算符前置++和后置++重载的成员函数:以时钟类的对象为操作数。对于前置单目运算符,重载函数没有参数,对于后置单目运算符,重载函数有一个int型参数。二、解题思路: 首先定义一个时钟类作为基类,再定义重载运算符的成员函数,最后在主函数中实现时钟类的......
  • 2023.4.21每日总结
    今天做了什么:今天完善了对于账单的录入,用于用户修改以及删除部分,之前在创建账单表时,忽略了账单应该绑定用户的问题,今天解决了这个问题。遇到了哪些困难:在各个jsp与Servlet之间传递用户名这个元素时遇到了困难,在使用request.setAttribute()这个方法与request.getAttribute()这两个......
  • 每日总结-23.4.21
    cookie和session在传值中的作用,能够让我们十分方便的对于这些用户名和密码很多地方都需要的变量一直传值的问题,还使用了一些关于css布局的问题,将背景换成自己喜欢的图片,使得整个项目变得更加的好看,还学会了使用<a>进行传值,还有jsp:forward jsp:param这两个的传值和使用Login.jsp......
  • 4.21每日总结
       今天完成了管理员页面(用户)的增删改查,以及一些流程方面的细微调整。   昨天完成了一个左侧导航栏的功能,实现左侧选择功能,右侧显示。   遇见的问题,没法真正意义上的增加用户,人脸库的用户没法简单的实现,还需要调用一个接口。......