1 Star 0 Fork 83

weilaix / yidongyiapp

forked from sectong / yidongyiapp 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
reg.html 3.29 KB
一键复制 编辑 原始数据 按行查看 历史
jiekechoo 提交于 2016-11-20 15:35 . v0.2.0 relase
<!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: 28%;
}
.mui-input-row label~input,
.mui-input-row label~select,
.mui-input-row label~textarea {
width: 72%;
}
.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='code' type="text" class="mui-input-clear mui-input" placeholder="请输入验证码">
<button id='sms' style="position: absolute;top:3px;right:10px;width:100px;">发送验证码</button>
</div>
<div class="mui-input-row">
<label>密码</label>
<input id='password' type="password" 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 class="mui-content-padded">
<p>输入手机号码和密码(至少6位),注册即可。</p>
</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 requestSMSButton = doc.getElementById('sms');
var smsCodeBox = doc.getElementById('code');
var accountBox = doc.getElementById('account');
var passwordBox = doc.getElementById('password');
regButton.addEventListener('tap', function(event) {
var regInfo = {
account: accountBox.value,
code: smsCodeBox.value,
password: passwordBox.value,
};
app.reg(regInfo, function(err) {
if (err) {
plus.nativeUI.toast(err);
return;
}
plus.nativeUI.toast('注册成功');
$.openWindow({
id: 'main',
show: {
aniShow: 'pop-in'
}
});
});
});
requestSMSButton.addEventListener('tap', function(event) {
var account = accountBox.value;
app.requestSMS(account, function(err) {
if (err) {
plus.nativeUI.toast(err);
return;
}
plus.nativeUI.toast('短信验证码请求成功');
$.openWindow({
id: 'main',
show: {
aniShow: 'pop-in'
}
});
});
});
});
}(mui, document));
</script>
</body>
</html>
HTML
1
https://gitee.com/WisdomUniverse/yidongyiapp.git
git@gitee.com:WisdomUniverse/yidongyiapp.git
WisdomUniverse
yidongyiapp
yidongyiapp
master

搜索帮助