Files
waf-platform/EdgeUser/web/views/@default/settings/login/index.html

30 lines
964 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{$layout}
<div class="margin"></div>
<form method="post" class="ui form" data-tea-action="$" data-tea-success="success">
<table class="ui table definition selectable">
<tr>
<td class="title">登录用户名 *</td>
<td>
<input type="text" name="username" maxlength="50" v-model="user.username" ref="focus"/>
<p class="comment">只能含有英文、数字或下划线。</p>
</td>
</tr>
<tr>
<td>登录密码</td>
<td>
<input type="password" name="password" maxlength="50" v-model="password"/>
<p class="comment">不填表示保留原有密码<span v-if="password.length > 0 && complexPassword">不小于6位只能包含英文字母、数字、下划线</span></p>
</td>
</tr>
<tr>
<td>确认密码</td>
<td>
<input type="password" name="password2" maxlength="50"/>
<p class="comment">不填表示保留原有密码。</p>
</td>
</tr>
</table>
<submit-btn></submit-btn>
</form>