| 12345678910111213141516171819 |
- <!--pages/authorizedLogin/authorizedLogin.wxml-->
- <view class="con">
- <image src='http://img-test.gz-yami.com/mini/logo.jpg'></image>
- <view class="login-form">
- <view class="account">
- <text class="input-item">账号</text>
- <input type="text" bindinput="getInputVal" data-type="account" placeholder-class="inp-palcehoder" placeholder="请输入手机号/用户名"></input>
- </view>
- <view class="account">
- <text class="input-item">密码</text>
- <input type="password" bindinput="getInputVal" data-type="password" placeholder-class="inp-palcehoder" placeholder="请输入密码"></input>
- </view>
- <view class="to-register" bindtap="toRegitser">还没有账号?<text>去注册></text></view>
- </view>
- <view>
- <button class="authorized-btn" bindtap="login">登录</button>
- </view>
- </view>
|