feat(auth): Supprime l'ancien workflow d'inscription parent et ajoute les assets pour le nouveau workflow

This commit is contained in:
Julien Martin
2025-05-05 12:51:32 +02:00
parent e6d3c41ecc
commit bbdacd68aa
15 changed files with 70 additions and 934 deletions
+1 -13
View File
@@ -197,19 +197,7 @@ class _LoginPageState extends State<LoginPage> {
const SizedBox(height: 10),
// Lien de création de compte
Center(
child: TextButton(
onPressed: () {
Navigator.pushNamed(context, '/parent-register');
},
child: Text(
'Créer un compte',
style: GoogleFonts.merienda(
fontSize: 16,
color: const Color(0xFF2D6A4F),
decoration: TextDecoration.underline,
),
),
),
child: Container(), // Suppression du bouton 'Créer un compte'
),
const SizedBox(height: 20), // Réduit l'espacement en bas
],