├── .gitignore ├── README.md ├── backend ├── .gitignore ├── .vscode │ └── launch.json ├── Admin.js ├── BACKENDREADME.md ├── DB_sample_and_queries.sql ├── LetterGenerated │ ├── FINAL_CAMPAIGNING.docx │ ├── leaveletter.docx │ ├── lettersgenerated │ └── periodabsent.docx ├── LetterTemplate │ ├── ALLOW_FOR_LAB_EXAM.docx │ ├── ATTENDANCE_FOR_PARTICIPANTS_TEMPLATE.docx │ ├── CAMPAIGNING_TEMPLATE.docx │ ├── HALFDAY_LEAVE.docx │ ├── HOSTEL_LEAVE.docx │ ├── LATE_FEE_PERMISSION.docx │ ├── LATE_RECCORD_SUBMISSION.docx │ ├── LATE_TO_CLASS.docx │ ├── LEAVE.docx │ ├── NOT_ATTENDING_CLASSES_NOTICE.docx │ ├── PERIOD_ATTENDANCE.docx │ ├── PERMISSION_CONDUCT_MEET_TEMPLATE.docx │ ├── PERMIT_EVENT_IN_HALL_TEMPLATE.docx │ ├── PERMIT_EVENT_TEMPLATE.docx │ ├── attendance_oc.docx │ └── test.docx ├── README.md ├── ServerHelper.js ├── UsersloggedIn.json ├── aknowledgeabsence.js ├── allUsers.json ├── allowtolabexam.js ├── campaigning.js ├── conductevent.js ├── conductmeet.js ├── db.js ├── details.json ├── eventvenue.js ├── generateTemplateLetters │ ├── CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592302197410.docx │ ├── CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592302349651.docx │ ├── CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592302534961.docx │ ├── CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592302681937.docx │ ├── CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592302865948.docx │ ├── CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592303063532.docx │ ├── CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592303792733.docx │ ├── CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592303822766.docx │ ├── CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592303972219.docx │ ├── CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592304321014.docx │ ├── CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592304574062.docx │ ├── CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592304600093.docx │ ├── CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592304703499.docx │ ├── CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592304896326.docx │ ├── CODINGSTUDIO_attendance_oc_1592389368828.docx │ ├── CODINGSTUDIO_attendance_oc_1592487078544.docx │ ├── CODINGSTUDIO_test_1592465448155.docx │ └── empty.txt ├── halfdayleave.js ├── hostelleave.js ├── latefee.js ├── laterecordsub.js ├── latetoclass.js ├── leaveletter.js ├── node │ ├── DashboardQueries.js │ ├── dataValidator.js │ ├── encrypt.js │ ├── mail-sender.js │ └── users.js ├── package-lock.json ├── package.json ├── participantsattendance.js ├── periodabsent.js ├── personalTemplates │ ├── TeamAttendanceTemplate.docx │ ├── TemplateHelper.js │ └── allTemplates │ │ ├── 1592042639775-attendance_oc.docx │ │ ├── 1592042671518-attendance_oc.docx │ │ ├── 1592044460395-attendance_oc.docx │ │ ├── 1592044553812-attendance_oc.docx │ │ ├── 1592044757389-arr.docx │ │ ├── 1592044784888-arr.docx │ │ ├── 1592045078588-attendance_oc.docx │ │ ├── 1592045079102-attendance_oc.docx │ │ ├── 1592045079282-attendance_oc.docx │ │ ├── 1592045125453-CAMPAIGNING_TEMPLATE.docx │ │ ├── 1592045125840-CAMPAIGNING_TEMPLATE.docx │ │ ├── 1592045164781-attendance_oc.docx │ │ ├── 1592045165294-attendance_oc.docx │ │ ├── 1592045165476-attendance_oc.docx │ │ ├── 1592045215853-attendance_oc.docx │ │ ├── 1592045216366-attendance_oc.docx │ │ ├── 1592045216534-attendance_oc.docx │ │ ├── 1592045422466-attendance_oc.docx │ │ ├── 1592045422929-attendance_oc.docx │ │ ├── 1592045423126-attendance_oc.docx │ │ ├── 1592045479113-attendance_oc.docx │ │ ├── 1592045676810-attendance_oc.docx │ │ ├── 1592061114731-attendance_oc.docx │ │ ├── 1592072014111-attendance_oc.docx │ │ ├── 1592072154379-attendance_oc.docx │ │ ├── 1592072676743-attendance_oc.docx │ │ ├── 1592073081283-attendance_oc.docx │ │ ├── 1592126880003-attendance_oc.docx │ │ ├── 1592224249652-PERMIT_EVENT_TEMPLATE.docx │ │ ├── 1592465132826-attendance_oc.docx │ │ ├── 1592465151781-ALLOW_FOR_LAB_EXAM.docx │ │ ├── 1592465186386-CAMPAIGNING_TEMPLATE.docx │ │ ├── 1592465188705-CAMPAIGNING_TEMPLATE.docx │ │ ├── 1592465201383-PERMIT_EVENT_TEMPLATE.docx │ │ ├── 1592465202168-PERMIT_EVENT_TEMPLATE.docx │ │ ├── 1592465212416-PERMISSION_CONDUCT_MEET_TEMPLATE.docx │ │ ├── 1592465426695-test.docx │ │ ├── 1592466577566-test.docx │ │ ├── 1592466650166-test.docx │ │ ├── 1592472941994-attendance_oc.docx │ │ ├── 1592486821658-CAMPAIGNING_TEMPLATE.docx │ │ └── 1592487270367-attendance_oc.docx ├── requestsQueries.js ├── server.js ├── teamattendance.js ├── temp ├── test.js ├── testtt.js ├── userlogin.txt └── validkeys.json ├── hod.bmml ├── mockups ├── Letter Template Component.xd ├── Profile Page.xd ├── Requests.xd ├── SequenceDiagram1.jpg ├── SequenceDiagram2.jpg ├── Templates Page.xd ├── UseCaseDiagram1.jpg └── remarks.pdf ├── package.json └── react ├── README.md ├── build ├── asset-manifest.json ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json ├── precache-manifest.859d3d6019bb8c15f5211c1497f261ca.js ├── robots.txt ├── service-worker.js └── static │ ├── css │ ├── main.5682a8c6.chunk.css │ └── main.5682a8c6.chunk.css.map │ ├── js │ ├── 2.6dbc15db.chunk.js │ ├── 2.6dbc15db.chunk.js.LICENSE.txt │ ├── 2.6dbc15db.chunk.js.map │ ├── main.86b03f7a.chunk.js │ ├── main.86b03f7a.chunk.js.map │ ├── runtime-main.b3d1de0e.js │ └── runtime-main.b3d1de0e.js.map │ └── media │ ├── cslogo.7d525284.png │ ├── logo.f4a90923.png │ ├── placeholderstable.ea575893.png │ ├── profilePic.9a0eec47.png │ └── sampletemplate.ee5256dd.png ├── favicon.ico ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.js ├── components │ ├── Navi.js │ └── ProfileModal.js ├── css │ ├── styles.css │ └── tacy.css ├── helpers │ ├── DashboardRoutes.js │ ├── LoginRoutes.js │ ├── ProtectedLogin.js │ ├── ProtectedRoute.js │ ├── PublicRoutes.js │ ├── RequestRoutes.js │ └── helpers.txt ├── images │ ├── cslogo.png │ └── profilePic.png ├── index.css ├── index.js ├── modules │ ├── Auth │ │ ├── Auth.txt │ │ ├── FacultyLogin.js │ │ ├── FacultyRegistration.js │ │ ├── ForgotPassword.js │ │ ├── ForgotPasswordForum.js │ │ ├── LandingPage.js │ │ ├── Links.js │ │ ├── Login.js │ │ ├── LoginPages.js │ │ ├── Register.js │ │ ├── RegistrationCheck.js │ │ ├── StudentLogin.js │ │ └── images │ │ │ └── logo.png │ ├── Dashboard │ │ ├── AddTemplate.js │ │ ├── ConfirmDelete.js │ │ ├── Dashboard.js │ │ ├── FacultyEModal.js │ │ ├── FacultyNModal.js │ │ ├── FacultyProfile.js │ │ ├── FacultyPsModal.js │ │ ├── FacultyTable.js │ │ ├── ForumProfile.js │ │ ├── LoadingScreen.js │ │ ├── NameModal.js │ │ ├── Navi.js │ │ ├── PassModal.js │ │ ├── ProfileModal.js │ │ ├── Remarks.js │ │ ├── Submission.js │ │ ├── Table.js │ │ ├── Template.js │ │ ├── TemplateDetails.js │ │ ├── TemplateList.js │ │ ├── ViewStatus.js │ │ ├── css │ │ │ ├── inputfile.scss │ │ │ └── template.css │ │ ├── dashboard.txt │ │ └── images │ │ │ ├── attendanceplaceholders.png │ │ │ ├── cslogo.png │ │ │ ├── placeholderstable.png │ │ │ ├── profilePic.png │ │ │ └── sampletemplate.png │ ├── LetterGeneration │ │ ├── AttendanceParticipants.js │ │ ├── Attendanceteam.js │ │ ├── Camp.js │ │ ├── Eventconduct.js │ │ ├── Eventvenue.js │ │ ├── LetterGen.txt │ │ ├── Referance-Button.js │ │ └── conductmeet.js │ ├── PublicTemplates │ │ ├── Navi.js │ │ ├── PublicLetters │ │ │ ├── AllowanceLabExam.js │ │ │ ├── HalfdayLeave.js │ │ │ ├── HostelLeave.js │ │ │ ├── LateFeePermission.js │ │ │ ├── LateRecordSubmission.js │ │ │ ├── LateToClass.js │ │ │ ├── Leave.js │ │ │ ├── NotAttendingClasses.js │ │ │ └── PeriodAttendance.js │ │ ├── PublicTemplateList.js │ │ ├── css │ │ │ ├── Letter.css │ │ │ ├── LoadingScreen.css │ │ │ ├── Profile.css │ │ │ ├── ProfileModal.css │ │ │ ├── Remarks.css │ │ │ ├── nav.css │ │ │ ├── table.css │ │ │ └── template.css │ │ └── images │ │ │ ├── cslogo.png │ │ │ └── profilePic.png │ └── RequestCreate │ │ ├── CreateRequest.js │ │ ├── Dform.js │ │ ├── EditCreateRequest.js │ │ └── RequestCreate.txt ├── npm-debug.log ├── serviceWorker.js └── setupTests.js ├── yarn-error.log └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/README.md -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/.vscode/launch.json -------------------------------------------------------------------------------- /backend/Admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/Admin.js -------------------------------------------------------------------------------- /backend/BACKENDREADME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/BACKENDREADME.md -------------------------------------------------------------------------------- /backend/DB_sample_and_queries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/DB_sample_and_queries.sql -------------------------------------------------------------------------------- /backend/LetterGenerated/FINAL_CAMPAIGNING.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/LetterGenerated/FINAL_CAMPAIGNING.docx -------------------------------------------------------------------------------- /backend/LetterGenerated/leaveletter.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/LetterGenerated/leaveletter.docx -------------------------------------------------------------------------------- /backend/LetterGenerated/lettersgenerated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/LetterGenerated/lettersgenerated -------------------------------------------------------------------------------- /backend/LetterGenerated/periodabsent.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/LetterGenerated/periodabsent.docx -------------------------------------------------------------------------------- /backend/LetterTemplate/ALLOW_FOR_LAB_EXAM.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/LetterTemplate/ALLOW_FOR_LAB_EXAM.docx -------------------------------------------------------------------------------- /backend/LetterTemplate/ATTENDANCE_FOR_PARTICIPANTS_TEMPLATE.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/LetterTemplate/ATTENDANCE_FOR_PARTICIPANTS_TEMPLATE.docx -------------------------------------------------------------------------------- /backend/LetterTemplate/CAMPAIGNING_TEMPLATE.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/LetterTemplate/CAMPAIGNING_TEMPLATE.docx -------------------------------------------------------------------------------- /backend/LetterTemplate/HALFDAY_LEAVE.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/LetterTemplate/HALFDAY_LEAVE.docx -------------------------------------------------------------------------------- /backend/LetterTemplate/HOSTEL_LEAVE.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/LetterTemplate/HOSTEL_LEAVE.docx -------------------------------------------------------------------------------- /backend/LetterTemplate/LATE_FEE_PERMISSION.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/LetterTemplate/LATE_FEE_PERMISSION.docx -------------------------------------------------------------------------------- /backend/LetterTemplate/LATE_RECCORD_SUBMISSION.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/LetterTemplate/LATE_RECCORD_SUBMISSION.docx -------------------------------------------------------------------------------- /backend/LetterTemplate/LATE_TO_CLASS.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/LetterTemplate/LATE_TO_CLASS.docx -------------------------------------------------------------------------------- /backend/LetterTemplate/LEAVE.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/LetterTemplate/LEAVE.docx -------------------------------------------------------------------------------- /backend/LetterTemplate/NOT_ATTENDING_CLASSES_NOTICE.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/LetterTemplate/NOT_ATTENDING_CLASSES_NOTICE.docx -------------------------------------------------------------------------------- /backend/LetterTemplate/PERIOD_ATTENDANCE.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/LetterTemplate/PERIOD_ATTENDANCE.docx -------------------------------------------------------------------------------- /backend/LetterTemplate/PERMISSION_CONDUCT_MEET_TEMPLATE.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/LetterTemplate/PERMISSION_CONDUCT_MEET_TEMPLATE.docx -------------------------------------------------------------------------------- /backend/LetterTemplate/PERMIT_EVENT_IN_HALL_TEMPLATE.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/LetterTemplate/PERMIT_EVENT_IN_HALL_TEMPLATE.docx -------------------------------------------------------------------------------- /backend/LetterTemplate/PERMIT_EVENT_TEMPLATE.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/LetterTemplate/PERMIT_EVENT_TEMPLATE.docx -------------------------------------------------------------------------------- /backend/LetterTemplate/attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/LetterTemplate/attendance_oc.docx -------------------------------------------------------------------------------- /backend/LetterTemplate/test.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/LetterTemplate/test.docx -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/ServerHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/ServerHelper.js -------------------------------------------------------------------------------- /backend/UsersloggedIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/UsersloggedIn.json -------------------------------------------------------------------------------- /backend/aknowledgeabsence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/aknowledgeabsence.js -------------------------------------------------------------------------------- /backend/allUsers.json: -------------------------------------------------------------------------------- 1 | { 2 | "coding.Studio();":"FORUM" 3 | } 4 | -------------------------------------------------------------------------------- /backend/allowtolabexam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/allowtolabexam.js -------------------------------------------------------------------------------- /backend/campaigning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/campaigning.js -------------------------------------------------------------------------------- /backend/conductevent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/conductevent.js -------------------------------------------------------------------------------- /backend/conductmeet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/conductmeet.js -------------------------------------------------------------------------------- /backend/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/db.js -------------------------------------------------------------------------------- /backend/details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/details.json -------------------------------------------------------------------------------- /backend/eventvenue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/eventvenue.js -------------------------------------------------------------------------------- /backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592302197410.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592302197410.docx -------------------------------------------------------------------------------- /backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592302349651.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592302349651.docx -------------------------------------------------------------------------------- /backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592302534961.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592302534961.docx -------------------------------------------------------------------------------- /backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592302681937.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592302681937.docx -------------------------------------------------------------------------------- /backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592302865948.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592302865948.docx -------------------------------------------------------------------------------- /backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592303063532.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592303063532.docx -------------------------------------------------------------------------------- /backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592303792733.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592303792733.docx -------------------------------------------------------------------------------- /backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592303822766.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592303822766.docx -------------------------------------------------------------------------------- /backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592303972219.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592303972219.docx -------------------------------------------------------------------------------- /backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592304321014.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592304321014.docx -------------------------------------------------------------------------------- /backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592304574062.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592304574062.docx -------------------------------------------------------------------------------- /backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592304600093.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592304600093.docx -------------------------------------------------------------------------------- /backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592304703499.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592304703499.docx -------------------------------------------------------------------------------- /backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592304896326.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/generateTemplateLetters/CODINGSTUDIO_PERMIT_EVENT_TEMPLATE_1592304896326.docx -------------------------------------------------------------------------------- /backend/generateTemplateLetters/CODINGSTUDIO_attendance_oc_1592389368828.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/generateTemplateLetters/CODINGSTUDIO_attendance_oc_1592389368828.docx -------------------------------------------------------------------------------- /backend/generateTemplateLetters/CODINGSTUDIO_attendance_oc_1592487078544.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/generateTemplateLetters/CODINGSTUDIO_attendance_oc_1592487078544.docx -------------------------------------------------------------------------------- /backend/generateTemplateLetters/CODINGSTUDIO_test_1592465448155.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/generateTemplateLetters/CODINGSTUDIO_test_1592465448155.docx -------------------------------------------------------------------------------- /backend/generateTemplateLetters/empty.txt: -------------------------------------------------------------------------------- 1 | All personal template letters are stored here. 2 | -------------------------------------------------------------------------------- /backend/halfdayleave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/halfdayleave.js -------------------------------------------------------------------------------- /backend/hostelleave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/hostelleave.js -------------------------------------------------------------------------------- /backend/latefee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/latefee.js -------------------------------------------------------------------------------- /backend/laterecordsub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/laterecordsub.js -------------------------------------------------------------------------------- /backend/latetoclass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/latetoclass.js -------------------------------------------------------------------------------- /backend/leaveletter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/leaveletter.js -------------------------------------------------------------------------------- /backend/node/DashboardQueries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/node/DashboardQueries.js -------------------------------------------------------------------------------- /backend/node/dataValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/node/dataValidator.js -------------------------------------------------------------------------------- /backend/node/encrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/node/encrypt.js -------------------------------------------------------------------------------- /backend/node/mail-sender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/node/mail-sender.js -------------------------------------------------------------------------------- /backend/node/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/node/users.js -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/participantsattendance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/participantsattendance.js -------------------------------------------------------------------------------- /backend/periodabsent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/periodabsent.js -------------------------------------------------------------------------------- /backend/personalTemplates/TeamAttendanceTemplate.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/TeamAttendanceTemplate.docx -------------------------------------------------------------------------------- /backend/personalTemplates/TemplateHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/TemplateHelper.js -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592042639775-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592042639775-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592042671518-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592042671518-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592044460395-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592044460395-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592044553812-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592044553812-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592044757389-arr.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592044757389-arr.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592044784888-arr.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592044784888-arr.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592045078588-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592045078588-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592045079102-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592045079102-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592045079282-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592045079282-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592045125453-CAMPAIGNING_TEMPLATE.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592045125453-CAMPAIGNING_TEMPLATE.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592045125840-CAMPAIGNING_TEMPLATE.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592045125840-CAMPAIGNING_TEMPLATE.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592045164781-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592045164781-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592045165294-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592045165294-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592045165476-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592045165476-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592045215853-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592045215853-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592045216366-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592045216366-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592045216534-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592045216534-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592045422466-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592045422466-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592045422929-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592045422929-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592045423126-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592045423126-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592045479113-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592045479113-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592045676810-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592045676810-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592061114731-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592061114731-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592072014111-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592072014111-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592072154379-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592072154379-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592072676743-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592072676743-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592073081283-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592073081283-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592126880003-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592126880003-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592224249652-PERMIT_EVENT_TEMPLATE.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592224249652-PERMIT_EVENT_TEMPLATE.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592465132826-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592465132826-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592465151781-ALLOW_FOR_LAB_EXAM.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592465151781-ALLOW_FOR_LAB_EXAM.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592465186386-CAMPAIGNING_TEMPLATE.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592465186386-CAMPAIGNING_TEMPLATE.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592465188705-CAMPAIGNING_TEMPLATE.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592465188705-CAMPAIGNING_TEMPLATE.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592465201383-PERMIT_EVENT_TEMPLATE.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592465201383-PERMIT_EVENT_TEMPLATE.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592465202168-PERMIT_EVENT_TEMPLATE.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592465202168-PERMIT_EVENT_TEMPLATE.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592465212416-PERMISSION_CONDUCT_MEET_TEMPLATE.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592465212416-PERMISSION_CONDUCT_MEET_TEMPLATE.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592465426695-test.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592465426695-test.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592466577566-test.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592466577566-test.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592466650166-test.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592466650166-test.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592472941994-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592472941994-attendance_oc.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592486821658-CAMPAIGNING_TEMPLATE.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592486821658-CAMPAIGNING_TEMPLATE.docx -------------------------------------------------------------------------------- /backend/personalTemplates/allTemplates/1592487270367-attendance_oc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/personalTemplates/allTemplates/1592487270367-attendance_oc.docx -------------------------------------------------------------------------------- /backend/requestsQueries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/requestsQueries.js -------------------------------------------------------------------------------- /backend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/server.js -------------------------------------------------------------------------------- /backend/teamattendance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/teamattendance.js -------------------------------------------------------------------------------- /backend/temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/temp -------------------------------------------------------------------------------- /backend/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/test.js -------------------------------------------------------------------------------- /backend/testtt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/testtt.js -------------------------------------------------------------------------------- /backend/userlogin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/userlogin.txt -------------------------------------------------------------------------------- /backend/validkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/backend/validkeys.json -------------------------------------------------------------------------------- /hod.bmml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/hod.bmml -------------------------------------------------------------------------------- /mockups/Letter Template Component.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/mockups/Letter Template Component.xd -------------------------------------------------------------------------------- /mockups/Profile Page.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/mockups/Profile Page.xd -------------------------------------------------------------------------------- /mockups/Requests.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/mockups/Requests.xd -------------------------------------------------------------------------------- /mockups/SequenceDiagram1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/mockups/SequenceDiagram1.jpg -------------------------------------------------------------------------------- /mockups/SequenceDiagram2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/mockups/SequenceDiagram2.jpg -------------------------------------------------------------------------------- /mockups/Templates Page.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/mockups/Templates Page.xd -------------------------------------------------------------------------------- /mockups/UseCaseDiagram1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/mockups/UseCaseDiagram1.jpg -------------------------------------------------------------------------------- /mockups/remarks.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/mockups/remarks.pdf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/package.json -------------------------------------------------------------------------------- /react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/README.md -------------------------------------------------------------------------------- /react/build/asset-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/build/asset-manifest.json -------------------------------------------------------------------------------- /react/build/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/build/favicon.ico -------------------------------------------------------------------------------- /react/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/build/index.html -------------------------------------------------------------------------------- /react/build/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/build/logo192.png -------------------------------------------------------------------------------- /react/build/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/build/logo512.png -------------------------------------------------------------------------------- /react/build/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/build/manifest.json -------------------------------------------------------------------------------- /react/build/precache-manifest.859d3d6019bb8c15f5211c1497f261ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/build/precache-manifest.859d3d6019bb8c15f5211c1497f261ca.js -------------------------------------------------------------------------------- /react/build/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/build/robots.txt -------------------------------------------------------------------------------- /react/build/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/build/service-worker.js -------------------------------------------------------------------------------- /react/build/static/css/main.5682a8c6.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/build/static/css/main.5682a8c6.chunk.css -------------------------------------------------------------------------------- /react/build/static/css/main.5682a8c6.chunk.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/build/static/css/main.5682a8c6.chunk.css.map -------------------------------------------------------------------------------- /react/build/static/js/2.6dbc15db.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/build/static/js/2.6dbc15db.chunk.js -------------------------------------------------------------------------------- /react/build/static/js/2.6dbc15db.chunk.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/build/static/js/2.6dbc15db.chunk.js.LICENSE.txt -------------------------------------------------------------------------------- /react/build/static/js/2.6dbc15db.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/build/static/js/2.6dbc15db.chunk.js.map -------------------------------------------------------------------------------- /react/build/static/js/main.86b03f7a.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/build/static/js/main.86b03f7a.chunk.js -------------------------------------------------------------------------------- /react/build/static/js/main.86b03f7a.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/build/static/js/main.86b03f7a.chunk.js.map -------------------------------------------------------------------------------- /react/build/static/js/runtime-main.b3d1de0e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/build/static/js/runtime-main.b3d1de0e.js -------------------------------------------------------------------------------- /react/build/static/js/runtime-main.b3d1de0e.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/build/static/js/runtime-main.b3d1de0e.js.map -------------------------------------------------------------------------------- /react/build/static/media/cslogo.7d525284.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/build/static/media/cslogo.7d525284.png -------------------------------------------------------------------------------- /react/build/static/media/logo.f4a90923.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/build/static/media/logo.f4a90923.png -------------------------------------------------------------------------------- /react/build/static/media/placeholderstable.ea575893.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/build/static/media/placeholderstable.ea575893.png -------------------------------------------------------------------------------- /react/build/static/media/profilePic.9a0eec47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/build/static/media/profilePic.9a0eec47.png -------------------------------------------------------------------------------- /react/build/static/media/sampletemplate.ee5256dd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/build/static/media/sampletemplate.ee5256dd.png -------------------------------------------------------------------------------- /react/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/favicon.ico -------------------------------------------------------------------------------- /react/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/package-lock.json -------------------------------------------------------------------------------- /react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/package.json -------------------------------------------------------------------------------- /react/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/public/favicon.ico -------------------------------------------------------------------------------- /react/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/public/index.html -------------------------------------------------------------------------------- /react/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/public/logo192.png -------------------------------------------------------------------------------- /react/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/public/logo512.png -------------------------------------------------------------------------------- /react/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/public/manifest.json -------------------------------------------------------------------------------- /react/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/public/robots.txt -------------------------------------------------------------------------------- /react/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/App.js -------------------------------------------------------------------------------- /react/src/components/Navi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/components/Navi.js -------------------------------------------------------------------------------- /react/src/components/ProfileModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/components/ProfileModal.js -------------------------------------------------------------------------------- /react/src/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/css/styles.css -------------------------------------------------------------------------------- /react/src/css/tacy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/css/tacy.css -------------------------------------------------------------------------------- /react/src/helpers/DashboardRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/helpers/DashboardRoutes.js -------------------------------------------------------------------------------- /react/src/helpers/LoginRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/helpers/LoginRoutes.js -------------------------------------------------------------------------------- /react/src/helpers/ProtectedLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/helpers/ProtectedLogin.js -------------------------------------------------------------------------------- /react/src/helpers/ProtectedRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/helpers/ProtectedRoute.js -------------------------------------------------------------------------------- /react/src/helpers/PublicRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/helpers/PublicRoutes.js -------------------------------------------------------------------------------- /react/src/helpers/RequestRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/helpers/RequestRoutes.js -------------------------------------------------------------------------------- /react/src/helpers/helpers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/helpers/helpers.txt -------------------------------------------------------------------------------- /react/src/images/cslogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/images/cslogo.png -------------------------------------------------------------------------------- /react/src/images/profilePic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/images/profilePic.png -------------------------------------------------------------------------------- /react/src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /react/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/index.js -------------------------------------------------------------------------------- /react/src/modules/Auth/Auth.txt: -------------------------------------------------------------------------------- 1 | Auth module here 2 | nuvvu cheppakapothe maku telvadu mari 3 | -------------------------------------------------------------------------------- /react/src/modules/Auth/FacultyLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Auth/FacultyLogin.js -------------------------------------------------------------------------------- /react/src/modules/Auth/FacultyRegistration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Auth/FacultyRegistration.js -------------------------------------------------------------------------------- /react/src/modules/Auth/ForgotPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Auth/ForgotPassword.js -------------------------------------------------------------------------------- /react/src/modules/Auth/ForgotPasswordForum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Auth/ForgotPasswordForum.js -------------------------------------------------------------------------------- /react/src/modules/Auth/LandingPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Auth/LandingPage.js -------------------------------------------------------------------------------- /react/src/modules/Auth/Links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Auth/Links.js -------------------------------------------------------------------------------- /react/src/modules/Auth/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Auth/Login.js -------------------------------------------------------------------------------- /react/src/modules/Auth/LoginPages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Auth/LoginPages.js -------------------------------------------------------------------------------- /react/src/modules/Auth/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Auth/Register.js -------------------------------------------------------------------------------- /react/src/modules/Auth/RegistrationCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Auth/RegistrationCheck.js -------------------------------------------------------------------------------- /react/src/modules/Auth/StudentLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Auth/StudentLogin.js -------------------------------------------------------------------------------- /react/src/modules/Auth/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Auth/images/logo.png -------------------------------------------------------------------------------- /react/src/modules/Dashboard/AddTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/AddTemplate.js -------------------------------------------------------------------------------- /react/src/modules/Dashboard/ConfirmDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/ConfirmDelete.js -------------------------------------------------------------------------------- /react/src/modules/Dashboard/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/Dashboard.js -------------------------------------------------------------------------------- /react/src/modules/Dashboard/FacultyEModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/FacultyEModal.js -------------------------------------------------------------------------------- /react/src/modules/Dashboard/FacultyNModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/FacultyNModal.js -------------------------------------------------------------------------------- /react/src/modules/Dashboard/FacultyProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/FacultyProfile.js -------------------------------------------------------------------------------- /react/src/modules/Dashboard/FacultyPsModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/FacultyPsModal.js -------------------------------------------------------------------------------- /react/src/modules/Dashboard/FacultyTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/FacultyTable.js -------------------------------------------------------------------------------- /react/src/modules/Dashboard/ForumProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/ForumProfile.js -------------------------------------------------------------------------------- /react/src/modules/Dashboard/LoadingScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/LoadingScreen.js -------------------------------------------------------------------------------- /react/src/modules/Dashboard/NameModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/NameModal.js -------------------------------------------------------------------------------- /react/src/modules/Dashboard/Navi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/Navi.js -------------------------------------------------------------------------------- /react/src/modules/Dashboard/PassModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/PassModal.js -------------------------------------------------------------------------------- /react/src/modules/Dashboard/ProfileModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/ProfileModal.js -------------------------------------------------------------------------------- /react/src/modules/Dashboard/Remarks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/Remarks.js -------------------------------------------------------------------------------- /react/src/modules/Dashboard/Submission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/Submission.js -------------------------------------------------------------------------------- /react/src/modules/Dashboard/Table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/Table.js -------------------------------------------------------------------------------- /react/src/modules/Dashboard/Template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/Template.js -------------------------------------------------------------------------------- /react/src/modules/Dashboard/TemplateDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/TemplateDetails.js -------------------------------------------------------------------------------- /react/src/modules/Dashboard/TemplateList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/TemplateList.js -------------------------------------------------------------------------------- /react/src/modules/Dashboard/ViewStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/ViewStatus.js -------------------------------------------------------------------------------- /react/src/modules/Dashboard/css/inputfile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/css/inputfile.scss -------------------------------------------------------------------------------- /react/src/modules/Dashboard/css/template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/css/template.css -------------------------------------------------------------------------------- /react/src/modules/Dashboard/dashboard.txt: -------------------------------------------------------------------------------- 1 | your module here 2 | -------------------------------------------------------------------------------- /react/src/modules/Dashboard/images/attendanceplaceholders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/images/attendanceplaceholders.png -------------------------------------------------------------------------------- /react/src/modules/Dashboard/images/cslogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/images/cslogo.png -------------------------------------------------------------------------------- /react/src/modules/Dashboard/images/placeholderstable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/images/placeholderstable.png -------------------------------------------------------------------------------- /react/src/modules/Dashboard/images/profilePic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/images/profilePic.png -------------------------------------------------------------------------------- /react/src/modules/Dashboard/images/sampletemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/Dashboard/images/sampletemplate.png -------------------------------------------------------------------------------- /react/src/modules/LetterGeneration/AttendanceParticipants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/LetterGeneration/AttendanceParticipants.js -------------------------------------------------------------------------------- /react/src/modules/LetterGeneration/Attendanceteam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/LetterGeneration/Attendanceteam.js -------------------------------------------------------------------------------- /react/src/modules/LetterGeneration/Camp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/LetterGeneration/Camp.js -------------------------------------------------------------------------------- /react/src/modules/LetterGeneration/Eventconduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/LetterGeneration/Eventconduct.js -------------------------------------------------------------------------------- /react/src/modules/LetterGeneration/Eventvenue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/LetterGeneration/Eventvenue.js -------------------------------------------------------------------------------- /react/src/modules/LetterGeneration/LetterGen.txt: -------------------------------------------------------------------------------- 1 | your module here 2 | -------------------------------------------------------------------------------- /react/src/modules/LetterGeneration/Referance-Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/LetterGeneration/Referance-Button.js -------------------------------------------------------------------------------- /react/src/modules/LetterGeneration/conductmeet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/LetterGeneration/conductmeet.js -------------------------------------------------------------------------------- /react/src/modules/PublicTemplates/Navi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/PublicTemplates/Navi.js -------------------------------------------------------------------------------- /react/src/modules/PublicTemplates/PublicLetters/AllowanceLabExam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/PublicTemplates/PublicLetters/AllowanceLabExam.js -------------------------------------------------------------------------------- /react/src/modules/PublicTemplates/PublicLetters/HalfdayLeave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/PublicTemplates/PublicLetters/HalfdayLeave.js -------------------------------------------------------------------------------- /react/src/modules/PublicTemplates/PublicLetters/HostelLeave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/PublicTemplates/PublicLetters/HostelLeave.js -------------------------------------------------------------------------------- /react/src/modules/PublicTemplates/PublicLetters/LateFeePermission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/PublicTemplates/PublicLetters/LateFeePermission.js -------------------------------------------------------------------------------- /react/src/modules/PublicTemplates/PublicLetters/LateRecordSubmission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/PublicTemplates/PublicLetters/LateRecordSubmission.js -------------------------------------------------------------------------------- /react/src/modules/PublicTemplates/PublicLetters/LateToClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/PublicTemplates/PublicLetters/LateToClass.js -------------------------------------------------------------------------------- /react/src/modules/PublicTemplates/PublicLetters/Leave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/PublicTemplates/PublicLetters/Leave.js -------------------------------------------------------------------------------- /react/src/modules/PublicTemplates/PublicLetters/NotAttendingClasses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/PublicTemplates/PublicLetters/NotAttendingClasses.js -------------------------------------------------------------------------------- /react/src/modules/PublicTemplates/PublicLetters/PeriodAttendance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/PublicTemplates/PublicLetters/PeriodAttendance.js -------------------------------------------------------------------------------- /react/src/modules/PublicTemplates/PublicTemplateList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/PublicTemplates/PublicTemplateList.js -------------------------------------------------------------------------------- /react/src/modules/PublicTemplates/css/Letter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/PublicTemplates/css/Letter.css -------------------------------------------------------------------------------- /react/src/modules/PublicTemplates/css/LoadingScreen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/PublicTemplates/css/LoadingScreen.css -------------------------------------------------------------------------------- /react/src/modules/PublicTemplates/css/Profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/PublicTemplates/css/Profile.css -------------------------------------------------------------------------------- /react/src/modules/PublicTemplates/css/ProfileModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/PublicTemplates/css/ProfileModal.css -------------------------------------------------------------------------------- /react/src/modules/PublicTemplates/css/Remarks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/PublicTemplates/css/Remarks.css -------------------------------------------------------------------------------- /react/src/modules/PublicTemplates/css/nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/PublicTemplates/css/nav.css -------------------------------------------------------------------------------- /react/src/modules/PublicTemplates/css/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/PublicTemplates/css/table.css -------------------------------------------------------------------------------- /react/src/modules/PublicTemplates/css/template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/PublicTemplates/css/template.css -------------------------------------------------------------------------------- /react/src/modules/PublicTemplates/images/cslogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/PublicTemplates/images/cslogo.png -------------------------------------------------------------------------------- /react/src/modules/PublicTemplates/images/profilePic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/PublicTemplates/images/profilePic.png -------------------------------------------------------------------------------- /react/src/modules/RequestCreate/CreateRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/RequestCreate/CreateRequest.js -------------------------------------------------------------------------------- /react/src/modules/RequestCreate/Dform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/RequestCreate/Dform.js -------------------------------------------------------------------------------- /react/src/modules/RequestCreate/EditCreateRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/modules/RequestCreate/EditCreateRequest.js -------------------------------------------------------------------------------- /react/src/modules/RequestCreate/RequestCreate.txt: -------------------------------------------------------------------------------- 1 | your module here 2 | -------------------------------------------------------------------------------- /react/src/npm-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/npm-debug.log -------------------------------------------------------------------------------- /react/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/serviceWorker.js -------------------------------------------------------------------------------- /react/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/src/setupTests.js -------------------------------------------------------------------------------- /react/yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/yarn-error.log -------------------------------------------------------------------------------- /react/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-Studio-vbit/A.R.M.A-Legacy/HEAD/react/yarn.lock --------------------------------------------------------------------------------