-
Notifications
You must be signed in to change notification settings - Fork 0
/
repwd.html
52 lines (48 loc) · 2.31 KB
/
repwd.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<link href="css/mui.min.css" rel="stylesheet" />
<link rel="stylesheet" href="css/page/repwd.css">
</head>
<body>
<div id="repwd">
<header class="mui-bar topBar mui-bar-nav">
<a class="mui-action-back topBack-ico mui-pull-left"></a>
<h1 class="mui-title" id="pageTit">忘记密码</h1>
</header>
<div class="logoImg">
</div>
<div class="mui-content content">
<div class="loginTop-box">
<img id="loginLogo" src="img/loginLogo.png">
</div>
<div class="login-box">
<div class="userPhoneNumber mui-input-row input-border">
<span class="userPhoneNumberIco"></span>
<input type="number" class="mui-input-clear" pattern="[0-9]*" @blur="changeUserData('mobile')" v-model.trim="changeInfo.mobile" typeName="phone" name="" id="phoneNum" value="" placeholder="请输入手机号!" />
</div>
<div class="userPhoneCode mui-input-row input-border">
<span class="userPhoneCodeIco"></span>
<input type="tel" maxlength="6" typeName="code" pattern="[0-9]*" @blur="changeUserData('messageCode')" v-model.trim="changeInfo.messageCode" name="" id="phoneCode" value="" placeholder="请输入短信验证码!" />
<button class="phoneCodeNum mui-text-right" @click="smsVerify" :disabled="showOutTime" v-text="second==90?'获取验证码':'剩余'+second+'秒'">获取验证码</button>
</div>
<div class="userPwd mui-input-row input-border">
<span class="userPwdIco"></span>
<input type="password" class="mui-input-password" @blur="changeUserData('password')" v-model.trim="changeInfo.password" typeName="pwd" name="" id="newPwd" value="" placeholder="请输入新密码!" />
</div>
</div>
</div>
<div class="sureBtn mui-text-center">
<button href="javascript:;" @click="changePwd">确定</button>
</div>
</div>
<script type="text/javascript" src="js/mui.min.js"></script>
<script type="text/javascript" src="js/muihelper.js"></script>
<script type="text/javascript" src="js/common.js"></script>
<script type="text/javascript" src="js/vue.min.js"></script>
<script type="text/javascript" src="js/page/repwd.js"></script>
</body>
</html>