zoukankan      html  css  js  c++  java
  • 软件工程概论———登录界面的设计

    网站系统开发需要的技术:

    前端web技术:js,html+css,ps,ajax,juqery。

    后台语言:php技术(基础加高级)

    登录界面源代码:

     登录界面代码:

    <%@ 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>
      </head>
      <body>
        <%=request.getAttribute("error") %>
        <form action="add.jsp" method="get">
        <table align="center" border="2" width="500">
        <tr>
          <td>用户账号 : </td>
          <td>
            <input type="text" name="username" />
          </td>
        </tr>
        <tr>
          <td>用户密码:</td>
          <td>
            <input type="password" name="password" />
          </td>
        </tr>

        <tr align="center">
          <td colspan="2">
            <input type="submit" value="提交" />
            <input type="reset" value="重置" />
          </td>
        </tr>
        </table>
      </form>
    </body>
    </html>

    运行结果:

     

    学习软件工程概论计划:

    课堂学习时间为8周,只要自己呕时间就自学 java web 这本教材,能够在期末之前做出一个系统网站,实现数据库的增删改查。

  • 相关阅读:
    pytest文档19-pytest分布式执行(pytest-xdist)
    pytest文档18-配置文件pytest.ini
    pytest文档17-fixture之autouse=True
    pytest文档16-用例a失败,跳过测试用例b和c并标记失败xfail
    pytest文档15-使用自定义标记mark
    pytest文档14-函数传参和fixture传参数request
    pytest文档12-skip跳过用例
    pytest文档11-assert断言
    创建express项目
    docker安装脚本
  • 原文地址:https://www.cnblogs.com/2016-zck/p/7884177.html
Copyright © 2011-2022 走看看