create login page
This commit is contained in:
parent
6b31d89e1d
commit
5b3549068b
6 changed files with 88 additions and 42 deletions
23
src/views/Login.vue
Normal file
23
src/views/Login.vue
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<template>
|
||||
<form
|
||||
@submit.prevent="handleSubmit"
|
||||
class="w-full h-full p-16 flex flex-col"
|
||||
style="--row-gap: 1rem"
|
||||
>
|
||||
<input
|
||||
type="text"
|
||||
v-model="subject"
|
||||
id="appointment-subject"
|
||||
placeholder="Objet du rendez-vous"
|
||||
class="w-full rounded-md border border-grey-200 px-16 py-12"
|
||||
required
|
||||
/>
|
||||
<label for="appointment-details" class="sr-only">Détails du projet</label>
|
||||
<button @click="login" class="btn" type="submit">Soumettre</button>
|
||||
</form>
|
||||
</template>
|
||||
<script setup>
|
||||
function login() {
|
||||
console.log('test');
|
||||
}
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue