2024-09-15 01:50:36 +02:00

39 lines
880 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script setup lang="ts">
definePageMeta({
name: 'Signin',
})
const state = reactive({
mail: undefined,
password: undefined,
})
</script>
<template>
<UCard>
<h1 class="text-2xl uppercase">Qui êtes-vous ?</h1>
<UForm :state="state">
<UFormGroup label="Adresse courriel">
<UInput name="mail" v-model="state.mail" />
</UFormGroup>
<UFormGroup label="Mot de passe">
<UInput type="password" name="password" v-model="state.password" />
</UFormGroup>
<UButton type="submit">Se Connecter</UButton>
<UButton to="/join">Mot de passe oublié ?</UButton>
</UForm>
<!-- <p class="text-error">Nous navons pas reconnu vos identifiants.</p> -->
<p>ou bien</p>
<div>
<UButton>Se connecter avec Google</UButton>
<UButton>Se connecter avec Discord</UButton>
</div>
</UCard>
</template>