|
@@ -12,7 +12,7 @@
|
|
</view>
|
|
</view>
|
|
<view class="cu-form-group">
|
|
<view class="cu-form-group">
|
|
<view class="title">账户</view>
|
|
<view class="title">账户</view>
|
|
- <input name="account" id="account" placeholder="账户名称" bindinput="inputAction" data-id="account" value='{{account}}'></input>
|
|
|
|
|
|
+ <input name="account" id="account" placeholder="账户" bindinput="inputAction" data-id="account" value='{{account}}'></input>
|
|
</view>
|
|
</view>
|
|
<view class='cu-form-group'>
|
|
<view class='cu-form-group'>
|
|
<view class='title'>密码长度</view>
|
|
<view class='title'>密码长度</view>
|
|
@@ -20,6 +20,15 @@
|
|
<input class='text-center' type='text' placeholder="密码长度" bindinput="inputAction" id="passwordLength" data-id="passwordLength" value="{{passwordLength}}" disabled='disabled'></input>
|
|
<input class='text-center' type='text' placeholder="密码长度" bindinput="inputAction" id="passwordLength" data-id="passwordLength" value="{{passwordLength}}" disabled='disabled'></input>
|
|
<text class='cuIcon-triangleupfill bigTriangle text-orange' bindtap="addLength"></text>
|
|
<text class='cuIcon-triangleupfill bigTriangle text-orange' bindtap="addLength"></text>
|
|
</view>
|
|
</view>
|
|
|
|
+ <view class="cu-form-group">
|
|
|
|
+ <view class="title"></view>
|
|
|
|
+ <checkbox-group bindchange="checkboxAction">
|
|
|
|
+ <checkbox name="combin" value="smallLetter" checked="checked"></checkbox> 字母
|
|
|
|
+ <checkbox name="combin" value="bigLetter" checked="checked"></checkbox> 大写
|
|
|
|
+ <checkbox name="combin" value="alpha" checked="checked"></checkbox> 数字
|
|
|
|
+ <checkbox name="combin" value="specialChars" checked="checked"></checkbox> 特殊字符
|
|
|
|
+ </checkbox-group>
|
|
|
|
+ </view>
|
|
<view class="cu-form-group">
|
|
<view class="cu-form-group">
|
|
<view class="title">密码</view>
|
|
<view class="title">密码</view>
|
|
<input name="password" id="password" placeholder="密码,将会通过公钥加密存储到服务器" bindinput="inputAction" data-id="password" value='{{password}}'></input>
|
|
<input name="password" id="password" placeholder="密码,将会通过公钥加密存储到服务器" bindinput="inputAction" data-id="password" value='{{password}}'></input>
|