This project provides a beautiful and interactive authentication UI (Sign-up and Login) built with React, Vite, and Tailwind CSS. It features an animated 'galaxy' background using HTML5 Canvas to enhance the user experience.
Clone the repository:
git clone https://github.com/pratheeksha2004/Authentication-ui
Navigate to the project directory:
cd Authentication-ui
Install dependencies:
npm install # or yarn install or pnpm install
Start the development server:
npm run dev # or yarn dev or pnpm dev
Open your browser and navigate to the address provided by Vite (usually http://localhost:5173
).
. ├── src/ │ ├── components/ │ │ └── AuthForm.jsx # Reusable authentication form component. │ ├── App.jsx # Main application component. │ ├── index.css # Global styles (if any). │ ├── main.jsx # Entry point of the React application. │ └── pages/ │ └── IndexPage.jsx # Main page containing login/signup forms and canvas animation. ├── public/ # Static assets (if any). ├── .gitignore # Specifies intentionally untracked files that Git should ignore. ├── README.md # Project documentation. ├── package.json # Lists project dependencies and scripts. ├── vite.config.js # Vite configuration file. └── ...