22 lines
1.0 KiB
Plaintext
22 lines
1.0 KiB
Plaintext
<!--pages/index/login.wxml-->
|
|
<view class="container">
|
|
<view class="login-icon">
|
|
<image class="login-img" src="../../image/icon/login-background.svg"></image>
|
|
</view>
|
|
<view class="login-from">
|
|
<view class="inputView">
|
|
<!--账号-->
|
|
<input class="inputText" placeholder="账号" id="username" bindinput="bindKeyInput" />
|
|
<!--密码-->
|
|
<input class="inputText" placeholder="密码" id="password" bindinput="bindKeyInput" password="true" />
|
|
</view>
|
|
<view class="loginBtnView">
|
|
<!--按钮-->
|
|
<!-- <button wx:if="{{debugMode}}" class="loginBtn" type="warn" bindtap="fastLogin">DEBUG快速登录user</button> -->
|
|
<button class="loginBtn" type="primary" bindtap="login">密码登录</button>
|
|
<!-- <button class="loginBtn" type="secondary" bindtap="visitor">访客申请</button> -->
|
|
<button class="loginBtn" type="primary" bindtap="wxLogin">微信登录/注册</button>
|
|
<button class="loginBtn" type="secondary" bindtap="fastLogin">随便看看</button>
|
|
</view>
|
|
</view>
|
|
</view> |