1
0
Fork 0
forked from Kispi/Core
HGOE-SaS/webapp/src/components/molecules/MoleculeAuthDialog.vue

44 lines
No EOL
973 B
Vue

<template>
<div class="hero min-h-full">
<form
class="hero-content flex-col text-center"
@submit.prevent="handleAuth"
>
<AtomInput
v-model="email"
placeholder="Admin-Email"
type="email"
required
/>
<AtomInput
v-model="password"
placeholder="Passwort"
type="password"
required
/>
<button class="btn gap-2 self-end">
<ArrowRightOnRectangleIcon class="h-6 w-6" />
Login
</button>
</form>
</div>
</template>
<script lang="ts" setup>
import { ref } from 'vue';
import { AuthService } from '../../services/auth.service';
import { ArrowRightOnRectangleIcon } from '@heroicons/vue/24/outline';
import AtomInput from '../atoms/AtomInput.vue';
const email = ref('');
const password = ref('');
async function handleAuth() {
await AuthService.loginAsAdmin(email.value, password.value);
}
</script>
<style lang="scss" scoped>
</style>