111 lines
2.8 KiB
Dart
111 lines
2.8 KiB
Dart
import 'package:cofounderella/auth/auth_service.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:cofounderella/components/my_button.dart';
|
|
import 'package:cofounderella/components/my_textfield.dart';
|
|
|
|
class LoginPage extends StatelessWidget {
|
|
//text controllers
|
|
final TextEditingController _emailController = TextEditingController();
|
|
final TextEditingController _passwordController = TextEditingController();
|
|
|
|
// tap to go to register page
|
|
final void Function()? onTap;
|
|
|
|
LoginPage({super.key, required this.onTap});
|
|
|
|
// login method
|
|
void login(BuildContext context) async {
|
|
// auth service
|
|
final authService = AuthService();
|
|
|
|
// try login
|
|
try {
|
|
await authService.signInWithEmailPassword(
|
|
_emailController.text,
|
|
_passwordController.text,
|
|
);
|
|
} catch (e) {
|
|
showDialog(
|
|
context: context,
|
|
builder: (context) => AlertDialog(
|
|
title: Text(e.toString()),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
backgroundColor: Theme.of(context).colorScheme.background,
|
|
body: Center(
|
|
child: Column(mainAxisAlignment: MainAxisAlignment.center, children: [
|
|
//logo
|
|
Icon(
|
|
Icons.people_alt,
|
|
size: 60,
|
|
color: Theme.of(context).colorScheme.primary,
|
|
),
|
|
|
|
const SizedBox(height: 50),
|
|
|
|
//welcome back message
|
|
Text(
|
|
"Welcome back, you've been missed",
|
|
style: TextStyle(
|
|
color: Theme.of(context).colorScheme.primary,
|
|
fontSize: 16,
|
|
),
|
|
),
|
|
|
|
const SizedBox(height: 25),
|
|
|
|
// email textfield
|
|
MyTextField(
|
|
hintText: "E-Mail",
|
|
hideText: false,
|
|
controller: _emailController,
|
|
),
|
|
|
|
//const SizedBox(height: 25),
|
|
|
|
// password textfield
|
|
MyTextField(
|
|
hintText: "Password",
|
|
hideText: true,
|
|
controller: _passwordController,
|
|
),
|
|
|
|
//login button
|
|
MyButton(
|
|
text: "Login",
|
|
onTap: () => login(context),
|
|
),
|
|
|
|
const SizedBox(height: 25),
|
|
|
|
// register now
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Text(
|
|
"Not a member? ",
|
|
style: TextStyle(color: Theme.of(context).colorScheme.primary),
|
|
),
|
|
GestureDetector(
|
|
onTap: onTap,
|
|
child: Text(
|
|
"Register now",
|
|
style: TextStyle(
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
)
|
|
]),
|
|
),
|
|
);
|
|
}
|
|
}
|