├── src
├── App.css
├── index.css
├── images
│ ├── logo.png
│ ├── blog
│ │ ├── blog.png
│ │ └── author.png
│ ├── commonbg.jpg
│ ├── mbbsBanner.png
│ ├── eventGallery.png
│ ├── HomeContactBg.jpg
│ ├── faculty
│ │ └── faculty.png
│ ├── notice
│ │ └── notice.jpg
│ ├── slides
│ │ └── homeSlide1.jpg
│ ├── student
│ │ ├── whatsapp.png
│ │ └── profilePicture.png
│ └── SalymbekovUniversity.png
├── assets
│ ├── images
│ │ └── event-gallery
│ │ │ ├── e1.png
│ │ │ ├── e2.png
│ │ │ ├── e3.png
│ │ │ ├── e4.png
│ │ │ └── e5.png
│ └── react.svg
├── Components
│ ├── HomeComponents
│ │ ├── MBBSProgram
│ │ │ ├── MBBSProgram.css
│ │ │ └── MBBSProgram.jsx
│ │ ├── Count
│ │ │ ├── Count.css
│ │ │ └── Count.jsx
│ │ ├── EventGallery
│ │ │ ├── EventGallery.css
│ │ │ └── EventGallery.jsx
│ │ ├── HomeSlider
│ │ │ ├── HomeSlider.css
│ │ │ └── HomeSlider.jsx
│ │ ├── OurFaculty
│ │ │ └── OurFaculty.jsx
│ │ ├── ContactForm
│ │ │ └── ContactForm.jsx
│ │ ├── TalkWith
│ │ │ └── TalkWith.jsx
│ │ ├── About
│ │ │ └── About.jsx
│ │ ├── BlogPost
│ │ │ └── BlogPost.jsx
│ │ └── LatestNotice
│ │ │ └── LatestNotice.jsx
│ ├── AdminPanel
│ │ ├── Dashboard
│ │ │ └── Dashboard.jsx
│ │ └── Sidebar
│ │ │ └── Sidebar.jsx
│ ├── AuthBtns.jsx
│ │ ├── LoginBtn.jsx
│ │ └── LogoutBtn.jsx
│ ├── RequireAuth.jsx
│ ├── Application
│ │ ├── AppBreadcrumb
│ │ │ └── AppBreadcrumb.jsx
│ │ └── PreApplication
│ │ │ └── PreApplication.jsx
│ ├── ApplyComponent
│ │ ├── ApplyBreadCrumbs.jsx
│ │ ├── ApplyBanner.jsx
│ │ └── ApplyBanner2.jsx
│ ├── CommonBanner
│ │ └── CommonBanner.jsx
│ ├── AboutComponents
│ │ └── AboutBanner.jsx
│ ├── MainNavbar
│ │ └── MainNavbar.jsx
│ ├── TopHeader
│ │ └── TopHeader.jsx
│ ├── Footer
│ │ └── Footer.jsx
│ └── PreApplication
│ │ └── PreApplication.jsx
├── hooks
│ ├── checkAuth.jsx
│ ├── useJwt.jsx
│ ├── useUser.jsx
│ └── auth.jsx
├── App.jsx
├── Pages
│ ├── About
│ │ └── AboutUs.jsx
│ ├── Blog
│ │ └── Blog.jsx
│ ├── Program
│ │ └── Program.jsx
│ ├── Faculty
│ │ └── Faculty.jsx
│ ├── Notice
│ │ └── Notice.jsx
│ ├── Contact
│ │ └── Contact.jsx
│ ├── Home
│ │ └── Home.jsx
│ ├── Apply
│ │ └── Apply.jsx
│ ├── Authentication
│ │ ├── Authentication.jsx
│ │ ├── Login.jsx
│ │ └── Signup.jsx
│ ├── Admin
│ │ ├── PaidApplicants
│ │ │ └── PaidApplicants.jsx
│ │ ├── WaitingApplicant
│ │ │ └── WaitingApplicant.jsx
│ │ ├── PreApplicants
│ │ │ └── PreApplicants.jsx
│ │ ├── Applicants
│ │ │ └── Applicants.jsx
│ │ ├── ApprovedApplicants
│ │ │ └── ApprovedApplicants.jsx
│ │ └── IndividualApplicant
│ │ │ └── IndividualApplicant.jsx
│ └── Aplication
│ │ ├── ApplicationStatus.jsx
│ │ ├── Application.jsx
│ │ ├── RequiredDocuments.jsx
│ │ ├── Payments.jsx
│ │ ├── StartApplication.jsx
│ │ └── NewApplication.jsx
├── Layout
│ ├── MainLayouts.jsx
│ └── AdminLayouts.jsx
├── main.jsx
└── router.jsx
├── vite.config.js
├── .gitignore
├── index.html
├── README.md
├── .eslintrc.cjs
├── package.json
└── public
└── vite.svg
/src/App.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/index.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/frontend/main/src/images/logo.png
--------------------------------------------------------------------------------
/src/images/blog/blog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/frontend/main/src/images/blog/blog.png
--------------------------------------------------------------------------------
/src/images/commonbg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/frontend/main/src/images/commonbg.jpg
--------------------------------------------------------------------------------
/src/images/mbbsBanner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/frontend/main/src/images/mbbsBanner.png
--------------------------------------------------------------------------------
/src/images/blog/author.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/frontend/main/src/images/blog/author.png
--------------------------------------------------------------------------------
/src/images/eventGallery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/frontend/main/src/images/eventGallery.png
--------------------------------------------------------------------------------
/src/images/HomeContactBg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/frontend/main/src/images/HomeContactBg.jpg
--------------------------------------------------------------------------------
/src/images/faculty/faculty.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/frontend/main/src/images/faculty/faculty.png
--------------------------------------------------------------------------------
/src/images/notice/notice.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/frontend/main/src/images/notice/notice.jpg
--------------------------------------------------------------------------------
/src/images/slides/homeSlide1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/frontend/main/src/images/slides/homeSlide1.jpg
--------------------------------------------------------------------------------
/src/images/student/whatsapp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/frontend/main/src/images/student/whatsapp.png
--------------------------------------------------------------------------------
/src/images/SalymbekovUniversity.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/frontend/main/src/images/SalymbekovUniversity.png
--------------------------------------------------------------------------------
/src/images/student/profilePicture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/frontend/main/src/images/student/profilePicture.png
--------------------------------------------------------------------------------
/src/assets/images/event-gallery/e1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/frontend/main/src/assets/images/event-gallery/e1.png
--------------------------------------------------------------------------------
/src/assets/images/event-gallery/e2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/frontend/main/src/assets/images/event-gallery/e2.png
--------------------------------------------------------------------------------
/src/assets/images/event-gallery/e3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/frontend/main/src/assets/images/event-gallery/e3.png
--------------------------------------------------------------------------------
/src/assets/images/event-gallery/e4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/frontend/main/src/assets/images/event-gallery/e4.png
--------------------------------------------------------------------------------
/src/assets/images/event-gallery/e5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/frontend/main/src/assets/images/event-gallery/e5.png
--------------------------------------------------------------------------------
/src/Components/HomeComponents/MBBSProgram/MBBSProgram.css:
--------------------------------------------------------------------------------
1 | .commonbg{
2 | background: url("../../../images/commonbg.jpg");
3 | background-size: cover;
4 | }
--------------------------------------------------------------------------------
/vite.config.js:
--------------------------------------------------------------------------------
1 | import { defineConfig } from 'vite'
2 | import react from '@vitejs/plugin-react'
3 |
4 | // https://vitejs.dev/config/
5 | export default defineConfig({
6 | plugins: [react()],
7 | })
8 |
--------------------------------------------------------------------------------
/src/hooks/checkAuth.jsx:
--------------------------------------------------------------------------------
1 | import { signal } from "@preact/signals-react";
2 | import LoginBtn from "../Components/AuthBtns.jsx/LoginBtn";
3 |
4 | export const checkAuth = signal(false);
5 | export const authBtn = signal(
{subtitle}
19 | 20 |Any question or remarks? Just write us a message!
19 | 20 |Any question or remarks? Just write us a message!
21 | 22 |International faculty of medicine!
21 |16 | Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. 17 |
18 |name
26 |name
30 |name
34 |Any question or remarks? Just write us a message!
20 | 21 |If already have an account
32 |If you don'1t have an account
36 || S.N. | 33 |Name | 34 |Application Status | 35 |
|---|---|---|
| {index + 1} | 41 |42 | {applicant.user.firstName} {applicant.user.lastName} 43 | | 44 |{applicant.application_status} | 45 |
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum 14 | has been the industry's standard dummy text ever since the 1500s,
15 | 16 |Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum 24 | has been the industry's standard dummy text ever since the 1500s,
25 | 26 |Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum 34 | has been the industry's standard dummy text ever since the 1500s,
35 | 36 |Say something to start a live chat
18 || +996 555 014 870 | 23 ||
| smu.bangladesh@gmail.com | 27 ||
| Bishkek, Kyrgyzstan | 31 |
| S.N. | 67 |Name | 68 |Russian Citizen | 69 |Permanent Resident | 70 |Campus Location | 71 |Action | 72 |
|---|---|---|---|---|---|
| {index + 1} | 78 |79 | {preApplicant.user.firstName} {preApplicant.user.lastName} 80 | | 81 |{preApplicant.russain_citizen} | 82 |{preApplicant.permanent_resident} | 83 |{preApplicant.location} | 84 |85 | 88 | | 89 |
| 54 | Your Applications Type 55 | | 56 |Status | 57 |Started | 58 |Action | 59 ||||||
|---|---|---|---|---|---|---|---|---|
| 65 | You have not yet started an application using this 66 | account. 67 | | 68 |69 | | 70 | | ||||||
| 75 | {item.user.firstName} {item.user.lastName} 76 | | 77 |{item.application_status} | 78 |{new Date(item.created_at).toLocaleDateString()} | 79 |80 | {item.application_status !== "Pending" && ( 81 | 87 | )} 88 | | 89 ||||||
| S.N. | 82 |Name | 83 |Russian Citizen | 84 |Permanent Resident | 85 |Campus Location | 86 |Action | 87 |
|---|---|---|---|---|---|
| {index + 1} | 93 |94 | {preApplicant.user.firstName} {preApplicant.user.lastName} 95 | | 96 |{preApplicant.russain_citizen} | 97 |{preApplicant.permanent_resident} | 98 |{preApplicant.location} | 99 |100 | 103 | 106 | 109 | | 110 |
| S.N. | 88 |Name | 89 |Application Type | 90 |High School | 91 |Action | 92 |
|---|---|---|---|---|
| {index + 1} | 98 |99 | {applicant.user.firstName} {applicant.user.lastName} 100 | | 101 |{applicant.applicationType} | 102 |{applicant.highSchool} | 103 |104 | 107 | 110 | 113 | | 114 |
Any question or remarks? Just write us a message!
91 | 92 |131 | Don't have any account? Here. 132 |
133 || S.N. | 92 |Name | 93 |Application Type | 94 |High School | 95 |Action | 96 |
|---|---|---|---|---|
| {index + 1} | 102 |103 | {applicant.user.firstName} {applicant.user.lastName} 104 | | 105 |{applicant.applicationType} | 106 |{applicant.highSchool} | 107 |108 | 111 | 114 | 117 | | 118 |
25 | May the upcoming year be filled with academic success, meaningful experiences, and abundant opportunities for learning and growth. May you overcome challenges with resilience and find inspiration in your journey towards becoming a doctor. Here's to a year of progress, achievements, and taking steps closer to realizing your dream of making a difference in the field of medicine. Wishing you a joyful and prosperous New Year! Wishing you a joyful and prosperous New Year!Wishing you a joyful and prosperous New Year! 26 |
27 | 28 |46 | May the upcoming year be filled with academic success, meaningful experiences, and abundant opportunities for learning and growth. May you overcome challenges with resilience and find inspiration in your journey towards becoming a doctor. Here's to a year of progress, achievements, and taking steps closer to realizing your dream of making a difference in the field of medicine. Wishing you a joyful and prosperous New Year! Wishing you a joyful and prosperous New Year!Wishing you a joyful and prosperous New Year! 47 |
48 | 49 |67 | May the upcoming year be filled with academic success, meaningful experiences, and abundant opportunities for learning and growth. May you overcome challenges with resilience and find inspiration in your journey towards becoming a doctor. Here's to a year of progress, achievements, and taking steps closer to realizing your dream of making a difference in the field of medicine. Wishing you a joyful and prosperous New Year! Wishing you a joyful and prosperous New Year!Wishing you a joyful and prosperous New Year! 68 |
69 | 70 |88 | May the upcoming year be filled with academic success, meaningful experiences, and abundant opportunities for learning and growth. May you overcome challenges with resilience and find inspiration in your journey towards becoming a doctor. Here's to a year of progress, achievements, and taking steps closer to realizing your dream of making a difference in the field of medicine. Wishing you a joyful and prosperous New Year! Wishing you a joyful and prosperous New Year!Wishing you a joyful and prosperous New Year! 89 |
90 | 91 |Email : {data.user.email}
79 |Mobile : {data.user.phone}
80 |Parent Mobile: {data.user.parent_phone}
81 |Russain Citizen : {data.russain_citizen}
82 |Permanent Resident : {data.permanent_resident}
83 |Date of Birth : {data.user.day}/{data.user.month}/{data.user.year}
84 |No image uploaded
} 123 |No SSC certificate uploaded
} 133 |No passport uploaded
} 147 |77 | Once you have started an 78 | application, you can click on the application below to 79 | complete and submit it.If you have submitted an application, 80 | you can click on the application to check the status. 81 |
82 || 97 | Your Applications Type 98 | | 99 |Status | 100 |Started | 101 |Action | 102 ||||||
|---|---|---|---|---|---|---|---|---|
| 108 | You have not yet started an application using this 109 | account. 110 | | 111 |112 | | 113 | | 114 | | |||||
| 119 | {item.user.firstName} {item.user.lastName} 120 | | 121 |{item.application_status} | 122 |123 | {new Date(item.created_at).toLocaleDateString()} 124 | | 125 |126 | {(item.application_status === "Approved" && !dataUser?.application_status) && ( 127 | 133 | )} 134 | {(item.application_status === "Applied" && dataUser?.application_status !== "Pending" && dataUser?.ssc) && ( 135 | 141 | )} 142 | {(item.application_status === "Applied" && dataUser?.application_status === "Pending" && dataUser?.ssc) && ( 143 | Waiting for Approval 144 | )} 145 | {(item.application_status === "Paid" && dataUser?.application_status === "Approved" && dataUser?.ssc) && ( 146 | Waiting for Approval 147 | )} 148 | {(item.application_status === "Applied" && dataUser?.ssc === null) ? ( 149 | 155 | ) : null} 156 | {(item.application_status === "Paid" && dataUser?.application_status === "Paid") && ( 157 | Application accepted (full paid) 158 | )} 159 | | 160 ||||||
91 | Once you have started an 92 | application, you can click on the application below to complete 93 | and submit it.If you have submitted an application, you can 94 | click on the application to check the status. 95 |
96 |Any question or remarks? Just write us a message!
327 | 328 |401 | Already have an account? Here 402 |
403 |