zoukankan      html  css  js  c++  java
  • jsp第四次

    <%--
      Created by IntelliJ IDEA.
      User: Dell
      Date: 2021/3/27
      Time: 19:51
      To change this template use File | Settings | File Templates.
    --%>
    <%@ page contentType="text/html;charset=UTF-8" language="java" %>
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
        <style>
            div {
                 160px;
                height: 36px;
                background-color: #f40;
                line-height: 36px;
                text-align: center;
                color: #fff;
                font-size: 16px;
                margin: 30px auto;
                cursor: pointer;
                -webkit-user-select: none; /*禁止用户选中文字*/
            }
        </style>
    </head>
    <body>
      <form action="<%= request.getContextPath()%>/servlet/UserServlet" method="post" >
       用户名:<input type="text" name="uname"/>
        <br>
       密码:<input type="password"  name="password"/>
        <br>
        验证码:<input  type="text" name="checkCode"/>
        <a href="javascript:reloadCode();">
          <img alt="验证码" id="imagecode" src="<%= request.getContextPath()%>/servlet/ImageServlet"/>
          看不清楚</a><br>
        <input type="submit" value="登录">
      </form>
      </body>
    
    
    </html>
  • 相关阅读:
    第六章实验报告
    第三次实验报告
    第五章 循环结构课后反思
    第二次实验报告
    第一次实验报告
    第一次课后作业
    第五章 循环结构
    第九章实验报告
    第八章实验报告
    第七章 数组实验
  • 原文地址:https://www.cnblogs.com/zxp-0101/p/14589435.html
Copyright © 2011-2022 走看看