Skip to content

Commit

Permalink
hzuapps#5 hzuapps#109 提交实验代码
Browse files Browse the repository at this point in the history
  • Loading branch information
heymanheymanheyman committed Nov 13, 2016
1 parent f3130ee commit 8826046
Show file tree
Hide file tree
Showing 4 changed files with 210 additions and 0 deletions.
54 changes: 54 additions & 0 deletions jweb/web/1414080902202/DengLu.jsp
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML>
<html>
<meta charset="utf-8">
<!-- 新 Bootstrap 核心 CSS 文件 -->
<link rel="stylesheet" href="http://cdn.bootcss.com/bootstrap/3.3.0/css/bootstrap.min.css">
<!-- 可选的Bootstrap主题文件(一般不用引入) -->
<link rel="stylesheet" href="http://cdn.bootcss.com/bootstrap/3.3.0/css/bootstrap-theme.min.css">
<!-- jQuery文件。务必在bootstrap.min.js 之前引入 -->
<script src="http://cdn.bootcss.com/jquery/1.11.1/jquery.min.js"></script>
<!-- 最新的 Bootstrap 核心 JavaScript 文件 -->
<script src="http://cdn.bootcss.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<style type="text/css">
body{
background-color:#FFCC00;
}
.text2{border:3px;width:350px;height:50px;font-size:16px;line-height:1.6;}
.bt{
width:100px;
}
</style>
<head>
<title>某滴出行登录</title>
</head>
<body bgcolor="yellow">
<form action="index.jsp" method="post"id="target">
<p >
<font size="6"color="#FFFFFF">某滴出行账户登录</font>
</p>
<hr size="15px" noshade>
<p>
<b>用&nbsp;&nbsp;&nbsp;&nbsp;名:</b><input name="textfield3"type="text"class="text2"id="textfield3"placeholder="用户名/邮箱/手机号"/>
<br>
<br>
<br>
<p>
<b>密&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;码:</b><input name="textfield4"type="password"class="text2"id="textfield4"value=""/>
<input type="checkbox" checked="ischecked">记住密码
<br>
<br>
<br>

<p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type="submit" class="btn"id="button1"value="登录">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="reset" class="btn"value="重置"></p>
</form>
<% String str1=request.getParameter("textfield3");
session.setAttribute("DENGLUHAO",str1); %>
</body>
51 changes: 51 additions & 0 deletions jweb/web/1414080902202/FuKuan.jsp
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML>
<html>
<meta charset="utf-8">
<!-- 新 Bootstrap 核心 CSS 文件 -->
<link rel="stylesheet" href="http://cdn.bootcss.com/bootstrap/3.3.0/css/bootstrap.min.css">
<!-- 可选的Bootstrap主题文件(一般不用引入) -->
<link rel="stylesheet" href="http://cdn.bootcss.com/bootstrap/3.3.0/css/bootstrap-theme.min.css">
<!-- jQuery文件。务必在bootstrap.min.js 之前引入 -->
<script src="http://cdn.bootcss.com/jquery/1.11.1/jquery.min.js"></script>
<!-- 最新的 Bootstrap 核心 JavaScript 文件 -->
<script src="http://cdn.bootcss.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<style type="text/css">
body{
background-color:#FFCC00;
}
.text2{border:2px;width:150px;height:30px;font-size:12px;}
.bt{
width:100px;
}
</style>
<head>
<title>客户付款界面</title>
</head>
<body bgcolor="yellow">
<form action=""method="post"id="target">
<p><font size="6"color="#FFFFFF">尊敬的客户,感谢使用某滴出行。</font></p>
<p><input style="background:#ffffff;color:black;width: 250px; height: 50px;"type="submit"class="btn"id="button1"value="已经到达目的地。我要付款。"></input></p>
<p>请按照以下提示输入:</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>用&nbsp;&nbsp;&nbsp;&nbsp;名:</b><input name="textfield3"type="text"class="text3"id="textfield33"value="用户名/邮箱/手机号"/></P>
<p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>电&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;话:</b><input name="textfield4"type="password"class="text4"id="textfield44"value=""/></p>
<p>
<font size="5"color="black"><b>支付方式:</b></font>
</p>
<p>
<input type="checkbox"name="way1"value="A1"><font size="4"color="#ff6600">微信</font></input>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="checkbox"name="way2"value="A2"><font size="4"color="#ff6600">支付宝</font></input>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="checkbox"name="way3"value="A3"><font size="4"color="#ff6600">银行卡</font></input>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="checkbox"name="way4"value="A4"><font size="4"color="#ff6600">其他</font></input>
</p>
<p>
<input style="background:#ffffff;color:black;width: 150px; height: 50px;"type="submit"class="btn"id="button1"value="确认支付"></input>
<input style="background:#ffffff;color:black;width: 150px; height: 50px;"type="submit"class="btn"id="button1"value="取消支付"></input>
</p>
</body>
57 changes: 57 additions & 0 deletions jweb/web/1414080902202/JieDan.jsp
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML>
<html>
<meta charset="utf-8">
<!-- 新 Bootstrap 核心 CSS 文件 -->
<link rel="stylesheet" href="http://cdn.bootcss.com/bootstrap/3.3.0/css/bootstrap.min.css">
<!-- 可选的Bootstrap主题文件(一般不用引入) -->
<link rel="stylesheet" href="http://cdn.bootcss.com/bootstrap/3.3.0/css/bootstrap-theme.min.css">
<!-- jQuery文件。务必在bootstrap.min.js 之前引入 -->
<script src="http://cdn.bootcss.com/jquery/1.11.1/jquery.min.js"></script>
<!-- 最新的 Bootstrap 核心 JavaScript 文件 -->
<script src="http://cdn.bootcss.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="index.js"></script>
<style type="text/css">
body{
background-color:#FFCC00;
}
.text2{border:3px;width:350px;height:50px;font-size:16px;line-height:1.6;}
.bt{
width:100px;
}
</style>
<head>
<title>车主接单界面</title>
</head>
<body bgcolor="yellow">
<form action=""method="post"id="target">
<p><font size="6"color="#FFFFFF">祝君一路平安</font></p>
<hr size="15px" noshade>
<p>
<a href="http://developer.baidu.com/map/carhome.htm"><font size="5"color="#ffffff">请您确认所在位置!(查看定位)</font></a>
</p>
<p>
<input style="background:#ffffff;color:black;width:80px;height:40px;"type="submit"class="btn0"id="button0"value="位置正确"></input>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input style="background:#ffffff;color:black;width:80px;height:40px;"type="submit"class="but1"id="button1"value="位置错误"></input>
</p>
<p>
<font size="5"color="#ffffff"><b>您要接:</b></font>
</p>
<p>
<input type="checkbox"name="way1"value="A1"><font size="4"color="#ff6600">长途订单</font></input>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="checkbox"name="way2"value="A2"><font size="4"color="#ff6600">短途订单</font></input>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</p>
<br>
<p><font size="5"color="#ffffff">确认后,系统会自动为您匹配最优质的客户。</font></p>
<br>
<p align="center">
<input style="background:#ffffff;color:black;width: 250px; height: 50px;"type="submit"class="btn"id="button1"value="确定寻找"></input>
</p>
</form>
</body>
48 changes: 48 additions & 0 deletions jweb/web/1414080902202/ShouKuan.jsp
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML>
<html>
<meta charset="utf-8">
<!-- 新 Bootstrap 核心 CSS 文件 -->
<link rel="stylesheet" href="http://cdn.bootcss.com/bootstrap/3.3.0/css/bootstrap.min.css">
<!-- 可选的Bootstrap主题文件(一般不用引入) -->
<link rel="stylesheet" href="http://cdn.bootcss.com/bootstrap/3.3.0/css/bootstrap-theme.min.css">
<!-- jQuery文件。务必在bootstrap.min.js 之前引入 -->
<script src="http://cdn.bootcss.com/jquery/1.11.1/jquery.min.js"></script>
<!-- 最新的 Bootstrap 核心 JavaScript 文件 -->
<script src="http://cdn.bootcss.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="index.js"></script>
<style type="text/css">
body{
background-color:#FFCC00;
}
.text2{border:2px;width:150px;height:30px;font-size:12px;}
.bt{
width:100px;
}
</style>
<head>
<title>车主收款界面</title>
</head>
<body bgcolor="yellow">
<form action=""method="post"id="target">
<p><font size="6"color="#FFFFFF">感谢您优质的服务。</font></p>
<p><input style="background:#ffffff;color:black;width: 250px; height: 50px;"type="submit"class="btn"id="button1"value="客户已到达目的地,我要收款。"></input></p>
<p><b>请输入订单号:</b><input name="textfield3"type="text"class="text2"id="textfield3"value=""/></P>
<p>
<font size="5"color="black"><b>请选择收款方式:</b></font>
</p>
<p>
<input type="checkbox"name="way1"value="A1"><font size="4"color="#ff6600">微信</font></input>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="checkbox"name="way2"value="A2"><font size="4"color="#ff6600">支付宝</font></input>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="checkbox"name="way3"value="A3"><font size="4"color="#ff6600">银行卡</font></input>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="checkbox"name="way4"value="A4"><font size="4"color="#ff6600">其他</font></input>
</p>
<p>
<input style="background:#ffffff;color:black;width: 150px; height: 50px;"type="submit"class="btn"id="button1"value="确认收款"></input>
</p>
</body>

0 comments on commit 8826046

Please sign in to comment.