├── .eslintignore ├── .eslintrc.json ├── .github └── ISSUE_TEMPLATE │ ├── bug.yml │ ├── enhancement.yml │ ├── feature.yml │ └── others.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Design ├── HomePage-MyClasses-dm.png ├── HomePage-MyClasses-wm.png ├── Login.png ├── LoginPage.png └── Register.png ├── LICENSE ├── Learn.md ├── README.md ├── components.json ├── next.config.mjs ├── package-lock.json ├── package.json ├── postcss.config.mjs ├── src ├── app │ ├── api │ │ └── auth │ │ │ └── [...nextauth] │ │ │ └── route.ts │ ├── favicon.ico │ ├── fonts │ │ ├── GeistMonoVF.woff │ │ └── GeistVF.woff │ ├── globals.css │ ├── layout.tsx │ ├── page.tsx │ ├── register │ │ └── page.tsx │ ├── signin │ │ └── page.tsx │ └── studentloginOpenLMS.jpg ├── components │ ├── Navbar.tsx │ └── ui │ │ ├── animated-gradient-text.tsx │ │ ├── button.tsx │ │ ├── checkbox.tsx │ │ └── input.tsx ├── lib │ ├── auth.ts │ └── utils.ts └── public │ └── bg.jpg ├── tailwind.config.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | # .eslintignore 2 | 3 | node_modules/ 4 | build/ 5 | public/ -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["next/core-web-vitals", "next/typescript"] 3 | } 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- 1 | name: 🐞 Bug Report 2 | description: File a bug report. 3 | title: "[Bug]
2 |
3 |
5 |
6 |
7 |
8 | 
9 | 
10 | 
11 | 
12 | 
13 |
14 | 
15 | [](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github?af=5236ad)
16 |
17 | 
18 |
Name | 119 |Logo | 120 |Purpose | 121 |
---|---|---|
GSSoC'2024-Extd | 124 |The coding period is from October 1st to October 30th, during which contributors make contributions and earn points on the platform. | 126 ||
Hacktoberfest 2024 | 129 |Hacktoberfest is a month-long October event welcoming all skill levels to join the open source community, contribute quality pull requests on GitHub, and earn cool swag. | 131 |
41 | The mordern open-source learning management system that empowers educational institutions to streamline their operations and enhance student experiences. 42 |
43 |26 | If you already have an account register{" "} 27 | 28 | Login here ! 29 | 30 |
31 | 60 |27 | If you don't have an account register 28 | 32 | You can Register here ! 33 | 34 |
35 |