首页 > 其他分享 >每日总结-23.4.14

每日总结-23.4.14

时间:2023-04-14 21:57:14浏览次数:42  
标签:总结 14 text 100% 50% height padding 23.4 font

<%@ page language="java" contentType="text/html; charset=UTF-8"

    pageEncoding="UTF-8"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>
<head>
    <title>学生信息管理平台</title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }
        html {
            height: 100%;
        }
        body {
            height: 100%;
        }
        .container {
            height: 100%;
            background-image: linear-gradient(to right, #2F4F4F, #696969);
        }
        .login-wrapper {
            background-color: #fff;
            width: 358px;
            height: 588px;
            border-radius: 15px;
            padding: 0 50px;
            position: relative;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }
        .header {
            font-size: 38px;
            font-weight: bold;
            text-align: center;
            line-height: 200px;
        }
        .input-item {
            display: block;
            width: 100%;
            margin-bottom: 20px;
            border: 0;
            padding: 10px;
            border-bottom: 1px solid rgb(128, 125, 125);
            font-size: 15px;
            outline: none;
        }
        .input-item::placeholder {
            text-transform: uppercase;
        }
        .btn {
            cursor:pointer;
            text-align: center;
            padding: 10px;
            width: 100%;
            margin-top: 40px;
            background-image: linear-gradient(to right, #a6c1ee, #fbc2eb);
            color: #fff;
        }
        .msg {
            text-align: center;
            line-height: 88px;
        }
        a {
            text-decoration-line: none;
            color: #abc1ee;
        }
    </style>
</head>
<body>
<div class="container">
    <div class="login-wrapper">
        <form action="control.jsp" method="post">
            <div class="header">登&nbsp;&nbsp;陆</div>
            <div class="form-wrapper">
                <input type="text" name="id" placeholder="学号或是工号" class="input-item">
                <input type="password" name="password" placeholder="密码" class="input-item">
                <input type="submit" class="btn" value="登陆" style="border:none"/>
            </div>
            <div class="msg">
                忘记密码?
                <a id="find_root" style="cursor:pointer">请点击</a>
            </div>
        </form>
    </div>
</div>
</body>
<script type="text/javascript">
    var find=document.getElementById("find_root");
    find.onclick=function(name){
    alert('你再想想啊,拜托!不要什么都交给我们程序员好不好,老哥?');
}
</script>
</html>

 

标签:总结,14,text,100%,50%,height,padding,23.4,font
From: https://www.cnblogs.com/laobing6214/p/17320050.html

相关文章

  • 2023-4-14自增前后缀区别
    #include<bits/stdc++.h>usingnamespacestd;intmain(){ inta=39; intb=39; cout<<a<<endl<<b<<endl; a++; ++b; cout<<"oneyearlater...."<<endl; cout<<"a="<<a<<endl<<"......
  • 4.14号今日总结
    字典另一个非常有用的Python内建数据类型是字典。序列是以连续的整数为索引,与此不同的是,字典以关键字为索引,关键字可以是任意不可变类型,通常用字符串或数值。理解字典的最佳方式是把它看做无序的键=>值对集合。在同一个字典之内,关键字必须是互不相同。一对大括号创建一个空......
  • 4.14总结
    今日学习ATM项目packagecom.fzyun;importjava.util.ArrayList;importjava.util.Random;importjava.util.Scanner;publicclassATMSystem{publicstaticvoidmain(String[]args){//1.定义一个账户类//2.定义一个集合容器,负责以后存储全部的......
  • 4.14每日总结
    所谓SQL注入,就是通过把SQL命令插入到Web表单递交或输入域名或页面请求的查询字符串,最终达到欺骗服务器执行恶意的SQL命令。我们永远不要信任用户的输入,我们必须认定用户输入的数据都是不安全的,我们都需要对用户输入的数据进行过滤处理。以下实例中,输入的用户名必须为字母、数字......
  • SQL_20230414
    SQL136每类试卷得分前3名找到每类试卷得分的前3名,如果两人最大分数相同,选择最小分数大者,如果还相同,选择uid大者。examination_info表idexam_idtagdifficultydurationrelease_timeexam_record表iduidexam_idstart_timesubmit_timescore解题思路首先......
  • 2023.4.14每日总结
    cookie和session在传值中的作用,能够让我们十分方便的对于这些用户名和密码很多地方都需要的变量一直传值的问题,还使用了一些关于css布局的问题,将背景换成自己喜欢的图片,使得整个项目变得更加的好看,还学会了使用<a>进行传值,还有jsp:forward jsp:param这两个的传值和使用Login.jsp......
  • 2023-04-14 手机号码间隔
    前言:uniappinput之输入手机号需要进行间隔显示。即18800188001显示成18800188001。部分代码如下://间隔函数formatPhone(val){if(val){if(this.inputPhoneValue.replace(/\s/g,"").length==11||this.inputPhoneValue.replace(/\s/g,"").length>......
  • 2023.04.14 定时测试随笔 T2
    T2P1593因子和传送门:洛谷P1593既然要求因子和,那我们就先对\(a\)分解质因数,得:              \(a=p_1^{k_1}+p_2^{k_2}+p_3^{k_3}...+p_n^{k_n}\)所以\(a^b\)质因数分解就会得到:              \(a^b=p_1^{k_1*b}+p_2^{k_2*b}+......
  • 编程一小时2023.4.14
    1.#include<bits/stdc++.h>usingnamespacestd;classnumber{intfz,fm;friendnumberoperator+(number&n1,number&n2);public:number(inta=0,intb=1){fz=a;fm=b;}friendintgcd(inta,intb);friendintmin_gb(number&n1......
  • 回溯_20230414
    332.重新安排行程给定一个机票的字符串二维数组[from,to],子数组中的两个成员分别表示飞机出发和降落的机场地点,对该行程进行重新规划排序。所有这些机票都属于一个从JFK(肯尼迪国际机场)出发的先生,所以该行程必须从JFK开始。如果存在多种有效的行程,请你按字符自然排序返回最......