Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tobennaaustin/educonnect

EduConnect is a multipage web application for students, allowing them to sign up, log in, and access various resources such as course materials, blogs, a resource library, announcements, and a contact directory.
https://github.com/tobennaaustin/educonnect

bootstrap5 firebase firebase-auth javascript library login signup

Last synced: about 1 month ago
JSON representation

EduConnect is a multipage web application for students, allowing them to sign up, log in, and access various resources such as course materials, blogs, a resource library, announcements, and a contact directory.

Awesome Lists containing this project

README

        

# EduConnect

EduConnect is a multipage web application for students, allowing them to sign up, log in, and access various resources such as course materials, a resource library, announcements, and a contact directory.

## Prerequisites

1. **NPM**: Install npm
```bash
npm install
```
## Important!!
Read the Package.json file

## About

This project is using [Firebase Auth](https://firebase.google.com/) for user authentication and [Bootstrap] for styling

## Structure

```bash
project-root/

├── index.html
├── admin.html
├── email-verification.html
├── main.html
├── password-reset.html
├── Signup.html
|
├── css/
│ ├── sstyles2.css
| ├── email-verification.css
| ├── for-password.css
| ├── main.css
| ├── res.css
│ └── custom-bootstrap.css

├── js/
│ ├── app.js
│ ├── admin.js
| ├── forgot-password.js
│ └── signup.js

├── images/
│ ├── background.jpg
│ ├── icon.png
| ├── icon1.png
| ├── logo.png
| ├── search.svg
| ├── undraw_online_reading_np7n.svg
│ └── undraw_opened_re_i38e.svg

├── node_modules/ # This will be generated by npm

├── .gitignore

├── package-lock.json
|
└── package.json
```