feat(login): commented the stay-connected toggle and added margin-top to the connection button
This commit is contained in:
parent
395b597f35
commit
1a15930063
|
|
@ -2,13 +2,13 @@
|
|||
setup
|
||||
lang="ts"
|
||||
>
|
||||
import { computed, ref } from 'vue';
|
||||
import { computed } from 'vue';
|
||||
import { useAuthApi } from 'src/modules/auth/composables/use-auth-api';
|
||||
|
||||
const auth_api = useAuthApi();
|
||||
|
||||
const email = defineModel<string>('email', { default: '', });
|
||||
const is_remembered = ref<boolean>(false);
|
||||
// const is_remembered = ref<boolean>(false);
|
||||
const is_employee_email = computed(() => email.value.includes('@targ'));
|
||||
</script>
|
||||
|
||||
|
|
@ -44,8 +44,7 @@
|
|||
<span class="text-weight-bolder text-uppercase text-overline"> {{ $t('login.email') }} </span>
|
||||
</template>
|
||||
</q-input>
|
||||
|
||||
<q-card-section
|
||||
<!-- <q-card-section
|
||||
horizontal
|
||||
class="q-mb-md q-pa-none text-uppercase text-caption text-weight-medium"
|
||||
>
|
||||
|
|
@ -63,7 +62,7 @@
|
|||
{{ $t('login.button.remember_me') }}
|
||||
</span>
|
||||
|
||||
</q-card-section>
|
||||
</q-card-section> -->
|
||||
|
||||
<q-card-actions>
|
||||
<q-btn
|
||||
|
|
@ -73,7 +72,7 @@
|
|||
type="submit"
|
||||
color="accent"
|
||||
:label="$t('login.button.connect')"
|
||||
class="full-width"
|
||||
class="full-width q-mt-lg"
|
||||
/>
|
||||
</q-card-actions>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user