28 lines
863 B
Plaintext
28 lines
863 B
Plaintext
<!--index.wxml-->
|
|
|
|
<view class="container-login">
|
|
<view class='content'>
|
|
<view class='userinfo'></view>
|
|
<form bindsubmit="formSubmit">
|
|
<view class='box'>
|
|
<view class="section__title">用户名:</view>
|
|
<view class="section__input">
|
|
<input placeholder-class="phcolor" placeholder="请输入用户名" type="text" name="username" />
|
|
</view>
|
|
</view>
|
|
<view class='box'>
|
|
<view class="section__title">密码:</view>
|
|
<view class="section__input">
|
|
<input placeholder-class="phcolor" placeholder="请输入密码" type="password" name="password" />
|
|
</view>
|
|
</view>
|
|
|
|
<view class="btn-area">
|
|
<button form-type='submit' class='btn-submit btn-blue' disabled="{{buttonClicked}}">提交</button>
|
|
|
|
</view>
|
|
</form>
|
|
</view>
|
|
|
|
</view>
|