登录页面

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>登录窗口</title>
<link rel="stylesheet" type="text/css" media="screen" href="css/bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="row" style="margin-top: 80px">
<div class="col-md-4 col-md-offset-4">
<div class="panel panel-primary">
<div class="panel-heading">登录</div>
<div class="panel-body">
<form action="login" method="post" >
<div class="form-group">
<label for="userName">用户名</label> <input type="text"
class="form-control" name="userName" placeholder="请输入用户名">
</div>
<div class="form-group">
<label for="password">密码</label> <input type="password"
class="form-control" name="password" placeholder="请输入密码"
value="" >
</div>
<div class="form-inline text-right">
<button type="submit" class="btn btn-primary">登录</button>
<a class="btn btn-primary" href="check.jsp">注册</a>
<button type="reset" class="btn btn-default" focus>重置</button>

</div>
</form>
</div>
</div>
</div>

</div>

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

上一篇:Docker 实战(1)- 使用 Jenkins 镜像创建容器,并搭建 Python + Pytest +Allure 的自动化测试环境


下一篇:Orbeon form 的安装和使用教程