Taskify is a modern task management application with secure Firebase authentication. It features user signup/login, password reset, profile management, and a "Remember Me" option for seamless logins. Built with React, Tailwind CSS, and Firebase, Taskify offers a sky-themed, responsive UI with dark mode support.
Clone the Repository:
git clone https://github.com/muzamal478/taskify.git
cd taskify
Install Dependencies::
npm install
Set Up Firebase::
Create a Firebase project at console.firebase.google.com.
Enable Email/Password Authentication.
Copy Firebase config to src/firebase.js:
```bash import { initializeApp } from "firebase/app"; import { getAuth } from "firebase/auth";
const firebaseConfig = { apiKey: "YOUR_API_KEY", authDomain: "taskmanager-b714f.firebaseapp.com", projectId: "taskmanager-b714f", storageBucket: "taskmanager-b714f.appspot.com", messagingSenderId: "YOUR_MESSAGING_SENDER_ID", appId: "YOUR_APP_ID" };
const app = initializeApp(firebaseConfig); export const auth = getAuth(app);