| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <!--pages/login/login.wxml-->
- <view class="container">
- <view class="login-box">
- <view class="title">听书阅读</view>
- <view class="subtitle">欢迎回来</view>
-
- <view class="form">
- <view class="input-group">
- <input
- class="input"
- type="text"
- placeholder="请输入用户名"
- value="{{username}}"
- bindinput="onUsernameInput"
- />
- </view>
-
- <view class="input-group">
- <input
- class="input"
- type="password"
- placeholder="请输入密码"
- value="{{password}}"
- bindinput="onPasswordInput"
- />
- </view>
-
- <button
- class="login-btn"
- bindtap="handleLogin"
- loading="{{loading}}"
- disabled="{{loading}}"
- >
- 登录
- </button>
-
- <view class="register-link">
- <text bindtap="goToRegister">还没有账号?立即注册</text>
- </view>
- </view>
- </view>
- </view>
|