Started login page
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<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">
|
||||
|
||||
<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 t’es le meilleur ?
|
||||
</p>
|
||||
|
||||
<app-login-form></app-login-form>
|
||||
|
||||
<div class="flex items-center w-full">
|
||||
<div class="flex-1 border-b border-gray-400"></div>
|
||||
<span class="px-2 text-gray-500 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">
|
||||
<p class="text-black font-bold m-0">Créer un compte</p>
|
||||
</ion-button>
|
||||
</div>
|
||||
@@ -0,0 +1,20 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
import {IonicModule} from "@ionic/angular";
|
||||
import {LoginFormComponent} from "../../components/login-form/login-form.component";
|
||||
|
||||
@Component({
|
||||
selector: 'app-login',
|
||||
templateUrl: './login.component.html',
|
||||
styleUrls: ['./login.component.scss'],
|
||||
imports: [
|
||||
IonicModule,
|
||||
LoginFormComponent
|
||||
]
|
||||
})
|
||||
export class LoginComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit() {}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user