Browse Source

fix: remove unwanted tags

pull/6249/head
DarkPhoenix2704 1 year ago
parent
commit
91c4e2339e
  1. 5
      packages/nc-gui/pages/signin.vue
  2. 10
      packages/nc-gui/pages/signup/[[token]].vue

5
packages/nc-gui/pages/signin.vue

@ -101,7 +101,7 @@ function resetError() {
</div>
</Transition>
<a-form-item :label="$t('labels.email')" name="email" :rules="formRules.email" aria-autocomplete="email">
<a-form-item :label="$t('labels.email')" name="email" :rules="formRules.email">
<a-input
v-model:value="form.email"
type="email"
@ -113,10 +113,9 @@ function resetError() {
/>
</a-form-item>
<a-form-item :label="$t('labels.password')" name="password" :rules="formRules.password" aria-autocomplete="password">
<a-form-item :label="$t('labels.password')" name="password" :rules="formRules.password">
<a-input-password
v-model:value="form.password"
type="password"
autocomplete="password"
data-testid="nc-form-signin__password"
size="large"

10
packages/nc-gui/pages/signup/[[token]].vue

@ -146,7 +146,7 @@ function resetError() {
</div>
</Transition>
<a-form-item :label="$t('labels.email')" name="email" :rules="formRules.email" aria-autocomplete="email">
<a-form-item :label="$t('labels.email')" name="email" :rules="formRules.email">
<a-input
v-model:value="form.email"
autocomplete="email"
@ -157,15 +157,9 @@ function resetError() {
/>
</a-form-item>
<a-form-item
:label="$t('labels.password')"
name="password"
:rules="formRules.password"
aria-autocomplete="new-password"
>
<a-form-item :label="$t('labels.password')" name="password" :rules="formRules.password">
<a-input-password
v-model:value="form.password"
type="password"
autocomplete="new-password"
size="large"
class="password"

Loading…
Cancel
Save