-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreg.html
130 lines (120 loc) · 3.53 KB
/
reg.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html class="ui-page-login">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<title></title>
<link href="css/mui.min.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
<style>
.area {
margin: 20px auto 0px auto;
}
.mui-input-group:first-child {
margin-top: 20px;
}
.mui-input-group label {
width: 22%;
}
.mui-input-row label~input,
.mui-input-row label~select,
.mui-input-row label~textarea {
width: 78%;
}
.mui-checkbox input[type=checkbox],
.mui-radio input[type=radio] {
top: 6px;
}
.mui-content-padded {
margin-top: 25px;
}
.mui-btn {
padding: 10px;
}
</style>
</head>
<body>
<header class="mui-bar mui-bar-nav">
<a class="mui-action-back mui-icon mui-icon-left-nav mui-pull-left"></a>
<h1 class="mui-title">注册</h1>
</header>
<div class="mui-content">
<form class="mui-input-group">
<div class="mui-input-row">
<label>账号</label>
<input id='account' type="text" class="mui-input-clear mui-input" placeholder="请输入账号">
</div>
<div class="mui-input-row">
<label>密码</label>
<input id='password' type="password" class="mui-input-clear mui-input" placeholder="请输入密码">
</div>
<div class="mui-input-row">
<label>确认</label>
<input id='password_confirm' type="password" class="mui-input-clear mui-input" placeholder="请确认密码">
</div>
<div class="mui-input-row">
<label>邮箱</label>
<input id='email' type="email" class="mui-input-clear mui-input" placeholder="请输入邮箱">
</div>
</form>
<div class="mui-content-padded">
<button id='reg' class="mui-btn mui-btn-block mui-btn-primary">注册</button>
</div>
</div>
<script src="js/mui.min.js"></script>
<script src="js/app.js"></script>
<script>
(function($, doc) {
$.init();
$.plusReady(function() {
var settings = app.getSettings();
var regButton = doc.getElementById('reg');
var accountBox = doc.getElementById('account');
var passwordBox = doc.getElementById('password');
var passwordConfirmBox = doc.getElementById('password_confirm');
var emailBox = doc.getElementById('email');
regButton.addEventListener('tap', function(event) {
var regInfo = {
account: accountBox.value,
password: passwordBox.value,
email: emailBox.value
};
var passwordConfirm = passwordConfirmBox.value;
if (passwordConfirm != regInfo.password) {
plus.nativeUI.toast('密码两次输入不一致');
return;
}
app.reg(regInfo, function(err) {
if (err == "1") {
plus.nativeUI.toast("注册成功!");
/*$.openWindow({
url: 'login.html',
id: 'login22',
show: {
aniShow: 'pop-in'
},
extras:
{
username:accountBox.value,
password: passwordBox.value
}
});*/
//传值-免输入
loginPage = plus.webview.getWebviewById('login');
mui.fire(loginPage, 'msrlogin', {
username: accountBox.value,
password: passwordBox.value
});
plus.webview.currentWebview().close();
return;
} else {
plus.nativeUI.toast(err);
}
});
});
});
}
(mui, document));
</script>
</body>
</html>