33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
<!--pages/login/login.wxml-->
|
|
<view class="container">
|
|
<view class="login-icon">
|
|
<image class="login-img" src="../../icon/logo.webp"></image>
|
|
</view>
|
|
<view class="login-from">
|
|
|
|
<!--账号-->
|
|
<view class="inputView">
|
|
<image class="nameImage" src="../../icon/username.png"></image>
|
|
<label class="loginLab">账号</label>
|
|
<input class="inputText" placeholder="请输入账号" bindinput="usernameInput" />
|
|
</view>
|
|
<view class="line"></view>
|
|
|
|
<!--密码-->
|
|
<view class="inputView" style="margin-top:30px;">
|
|
<image class="keyImage" src="../../icon/password.png"></image>
|
|
<label class="loginLab">密码</label>
|
|
<input class="inputText" password="true" placeholder="请输入密码" bindinput="passwordInput" />
|
|
</view>
|
|
<view class="line"></view>
|
|
|
|
<!--按钮-->
|
|
<view class="loginBtnView" style="margin-top: 30px;">
|
|
<button class="loginBtn" type="primary" bindtap="login">登录</button>
|
|
</view>
|
|
<view class="loginBtnView">
|
|
<button class="loginBtn" type="primary" bindtap="visitor">访客申请</button>
|
|
</view>
|
|
</view>
|
|
</view>
|