typo https://indiehackers.net/setting/password “登陆密码” 应改为 “登录密码”
注册或重置密码时无法使用 Chrome 创建密码,input 的 type 应改为 password。(在密码栏上用 text 是真的🐮🍺)
<div class="form-group">
<label for="user_current_password">旧密码</label>
<input class="form-control" type="text" name="user[current_password]" id="user_current_password" />
</div>
<div class="form-group">
<label for="user_password">密码</label>
<input class="form-control" type="text" name="user[password]" id="user_password" />
</div>
<div class="form-group">
<label for="user_password_confirmation">确认密码</label>
<input class="form-control" type="text" name="user[password_confirmation]" id="user_password_confirmation" />
</div>