Skip to content
Snippets Groups Projects
Commit 1ed432f7 authored by Konrad Mohrfeldt's avatar Konrad Mohrfeldt :koala:
Browse files

fix: disable autocomplete on CBA fields

refs #86
parent 220c43d0
No related branches found
No related tags found
No related merge requests found
<template>
<fieldset class="tw-flex tw-flex-col tw-gap-2" @focusout="save()">
<FormGroup v-slot="attrs" :label="t('user.fields.profile.cbaUsername')">
<input v-model="name" v-bind="attrs" />
<input v-model="name" v-bind="attrs" autocomplete="cba-username" />
</FormGroup>
<FormGroup v-slot="attrs" :label="t('user.fields.profile.cbaUserToken')">
<input v-model="token" type="password" v-bind="attrs" />
<input v-model="token" type="password" v-bind="attrs" autocomplete="cba-token" />
</FormGroup>
</fieldset>
</template>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment