Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/tobennaaustin/educonnect
- Owner: Tobennaaustin
- Created: 2024-09-08T14:31:08.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-09-22T14:02:52.000Z (about 2 months ago)
- Last Synced: 2024-10-10T04:23:28.657Z (about 1 month ago)
- Topics: bootstrap5, firebase, firebase-auth, javascript, library, login, signup
- Language: HTML
- Homepage: https://educonnect-azure.vercel.app
- Size: 19.3 MB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
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
```