created login page

This commit is contained in:
2026-03-24 09:51:47 +01:00
parent c24103a2ad
commit 95f92229a4
7 changed files with 54 additions and 49 deletions
+12 -8
View File
@@ -1,23 +1,27 @@
<div class="flex flex-col items-center justify-center min-h-screen p-6 space-y-4 bg-white">
<img src="BeReady.png" alt="BeReady-Logo" class="w-1/4 max-w-xs">
<img src="BeReady.png" alt="BeReady-Logo" class="w-1/3 max-w-xs">
<p class="text-3xl font-extrabold text-center text-black">
BeReady
</p>
<!-- <p class="text-3xl font-extrabold text-center text-black">-->
<!-- BeReady-->
<!-- </p>-->
<p class="text-gray-500 text-sm text-center w-3/5 leading-snug">
Prêt à défier tes potes et prouver que tes le meilleur ?
</p>
<app-login-form></app-login-form>
<app-login-form class="mb-9"></app-login-form>
<div class="flex items-center w-full">
<ion-button class="w-10/12 mt-0 border-0" color="primary">
<p class="text-white font-bold m-0">Se connecter</p>
</ion-button>
<div class="flex items-center w-10/12">
<div class="flex-1 border-b border-gray-400"></div>
<span class="px-2 text-gray-500 font-bold">ou</span>
<span class="px-2 text-gray-400 font-bold">ou</span>
<div class="flex-1 border-b border-gray-400"></div>
</div>
<ion-button class="w-full mt-0" style="border: 1px solid black; border-radius: 15px" color="secondary">
<ion-button class="w-10/12 mt-0" color="secondary">
<p class="text-black font-bold m-0">Créer un compte</p>
</ion-button>
</div>
+3
View File
@@ -0,0 +1,3 @@
ion-button:active {
transform: scale(0.98);
}