cedbe0687c
添加了多个图片、音频文件和CSS样式文件,包括QQ、微信相关图片和游戏素材。同时新增了跟进方式实体类gjfs.java和路径工具类PathUtils.java,用于项目功能扩展。 [新增文件包括] - 图片资源:qq.png, wx.png, logo.jpg等 - 游戏素材:bg.png, CRM.png等 - 实体类:com/xzw/entity/gjfs.java - 工具类:com/xzw/utils/PathUtils.java
86 lines
2.7 KiB
Plaintext
86 lines
2.7 KiB
Plaintext
<%@page contentType="text/html; charset=utf-8"%>
|
|
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
|
|
<!DOCTYPE html>
|
|
<html style="height: 100%">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="${basePath}static/css/styles.css" />
|
|
<link rel="stylesheet" href="${basePath}static/css/font-awesome-4.7.0/css/font-awesome.min.css" />
|
|
<script src="${basePath}static/js/jquery.min.js" type="text/javascript"></script>
|
|
<script src="${basePath}static/js/jquery-validation-1.14.0/jquery.validate.js" type="text/javascript"></script>
|
|
<script src="${basePath}static/js/jquery-validation-1.14.0/localization/messages_zh.js" type="text/javascript"></script>
|
|
<script src="${basePath}static/js/click.js"></script>
|
|
|
|
|
|
|
|
<style type="text/css">
|
|
|
|
@media screen and (max-width:1000px){
|
|
|
|
*{
|
|
font-size:30px;
|
|
}
|
|
|
|
.tableadd td{
|
|
height:90px;
|
|
}
|
|
|
|
.tableadd td button{
|
|
font-size:50px;
|
|
margin-left:100px;
|
|
margin-top:50px;
|
|
}
|
|
|
|
|
|
}
|
|
</style>
|
|
</head>
|
|
<body style="height: 100%; margin: 0">
|
|
<div class="add">
|
|
|
|
<form id="addForm" action="${basePath}pwd" method="post">
|
|
<c:if test="${type == 2}">
|
|
<input type="hidden" name="id" value="${user.id}">
|
|
<input type="hidden" name="dm" value="${user.dm}">
|
|
<input type="hidden" name="type" value="2">
|
|
</c:if>
|
|
<c:if test="${type == 1}">
|
|
<input type="hidden" name="id" value="${user.id}">
|
|
<input type="hidden" name="dm" value="${user.dm}">
|
|
<input type="hidden" name="type" value="1">
|
|
</c:if>
|
|
<table class="tableadd" style="width: 700px;">
|
|
<tr>
|
|
<td>原密码</td>
|
|
<td style="color: red;"><input type="password" name="pwd" required oninvalid="setCustomValidity('原密码不能为空!');" oninput="setCustomValidity('');">*</td>
|
|
</tr>
|
|
<tr>
|
|
<td>新密码</td>
|
|
<td style="color: red;"><input type="password" name="newPwd" required oninvalid="setCustomValidity('新密码不能为空!');" oninput="setCustomValidity('');">*</td>
|
|
</tr>
|
|
<tr>
|
|
<td>确认密码</td>
|
|
<td style="color: red;">
|
|
<input type="password" name="newPwd2" required oninvalid="setCustomValidity('确认密码不能为空!');" oninput="setCustomValidity('');">*
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="4" align="left">
|
|
<button class="edit" type="button" onclick="window.history.back(-1);">
|
|
<i class="fa fa-arrow-left"></i>
|
|
返回
|
|
</button>
|
|
<button class="remove" type="submit">
|
|
<i class="fa fa-save"></i>
|
|
提交
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="5" align="center"><span style="color:red;font-size:30px">${msg}</span></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html> |