début de la logique login + création du register

This commit is contained in:
gokhoal
2026-04-28 09:22:59 +02:00
parent df8e929723
commit ea2b4c4dd2
8 changed files with 164 additions and 10 deletions
@@ -0,0 +1,26 @@
import { Component } from '@angular/core';
import {
IonButton,
IonCard,
IonCardContent,
IonCardHeader,
IonCardSubtitle,
IonCardTitle
} from "@ionic/angular/standalone";
@Component({
selector: 'app-register-form',
imports: [
IonButton,
IonCard,
IonCardContent,
IonCardHeader,
IonCardTitle,
IonCardSubtitle
],
templateUrl: './register-form.component.html',
styleUrl: './register-form.component.css'
})
export class RegisterFormComponent {
}