fix: 修复密码无限制的漏洞

This commit is contained in:
奔跑的面条 2023-04-16 19:59:04 +08:00
parent 10c5e1d810
commit af1775b6e7

View File

@ -59,6 +59,8 @@
<n-form-item path="username">
<n-input
v-model:value="formInline.username"
type="text"
maxlength="16"
:placeholder="$t('global.form_account')"
>
<template #prefix>
@ -72,6 +74,7 @@
<n-input
v-model:value="formInline.password"
type="password"
maxlength="16"
show-password-on="click"
:placeholder="$t('global.form_password')"
>