This commit is contained in:
PascalMarchesseault
2025-01-09 12:00:12 -05:00
parent b63343faf7
commit df150ce9a1

View File

@@ -38,9 +38,10 @@ async function createAccount() {
</script> </script>
<template> <template>
<div class="text-center"> <div>
<div class="py-2 text-2xl font-bold flex flex-row items-center"> <div class="create-creator-card">
<div class="flex-grow text-center">Devenez Créateur</div> <div class="py-2 text-3xl font-bold">
<div class="text-center mb-10">Créez votre Hutopy.</div>
</div> </div>
<div class="flex flex-column justify-end gap-2"> <div class="flex flex-column justify-end gap-2">
<v-alert <v-alert
@@ -56,7 +57,7 @@ async function createAccount() {
<v-text-field <v-text-field
variant="outlined" variant="outlined"
v-model="creatorName" v-model="creatorName"
label="Nom de créateur" label="Nom de la page"
outlined outlined
></v-text-field> ></v-text-field>
<div class="flex flex-row justify-end gap-2"> <div class="flex flex-row justify-end gap-2">
@@ -72,4 +73,12 @@ async function createAccount() {
</div> </div>
</div> </div>
</div> </div>
</div>
</template> </template>
<style scoped>
.create-creator-card {
@apply text-center max-w-[1000px] mx-auto p-10 bg-white shadow-2xl rounded mt-16 ;
}
</style>