{"id":28215884,"url":"https://github.com/createunique/indtube_video_sharing","last_synced_at":"2026-04-12T18:20:28.802Z","repository":{"id":235255489,"uuid":"790392440","full_name":"createunique/INDTUBE_VIDEO_SHARING","owner":"createunique","description":"This repository contains an admin panel for managing videos, facilitating tasks such as user authentication, video uploads, and password management.","archived":false,"fork":false,"pushed_at":"2024-04-24T15:18:42.000Z","size":335,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-10T18:48:05.329Z","etag":null,"topics":["admin-panel","bootstrap","jquery","login","mysql","password-reset","php","registration","uplaod-file","video-management","xlsx"],"latest_commit_sha":null,"homepage":"https://indtube.rf.gd/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/createunique.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-04-22T19:49:05.000Z","updated_at":"2024-04-24T15:18:46.000Z","dependencies_parsed_at":"2024-04-22T21:02:24.649Z","dependency_job_id":"16e68443-7bb3-4f75-8ed8-ad62f54a1443","html_url":"https://github.com/createunique/INDTUBE_VIDEO_SHARING","commit_stats":null,"previous_names":["createunique/indtube_video_sharing"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/createunique/INDTUBE_VIDEO_SHARING","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/createunique%2FINDTUBE_VIDEO_SHARING","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/createunique%2FINDTUBE_VIDEO_SHARING/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/createunique%2FINDTUBE_VIDEO_SHARING/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/createunique%2FINDTUBE_VIDEO_SHARING/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/createunique","download_url":"https://codeload.github.com/createunique/INDTUBE_VIDEO_SHARING/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/createunique%2FINDTUBE_VIDEO_SHARING/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266952614,"owners_count":24011507,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-25T02:00:09.625Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["admin-panel","bootstrap","jquery","login","mysql","password-reset","php","registration","uplaod-file","video-management","xlsx"],"created_at":"2025-05-17T22:12:02.150Z","updated_at":"2026-04-12T18:20:28.713Z","avatar_url":"https://github.com/createunique.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Admin Panel for Video Management\n\nThis admin panel provides functionality for managing videos. It includes features for login, registration, uploading videos, and resetting passwords.\n\n## Technologies \u0026 Features Used\n\nThe Video Management System leverages various technologies and features:\n\n### Frontend\n- **HTML, CSS, JavaScript:** Front-end technologies for creating a responsive and visually appealing user interface.\n- **Bootstrap:** Bootstrap is a front-end framework for building responsive and visually appealing websites and web applications using HTML, CSS, and JavaScript.\n\n### Backend\n- **PHP:** Server-side scripting language for dynamic content generation and database interaction.\n- **MySQL:** Relational database management system for storing and querying student and attendance records.\n\n### Libraries\n- **XLSX:** XLSX is a library for processing Excel files\n- **jQuery:**  jQuery is a JavaScript library for simplifying frontend interactions and manipulation of HTML documents.\n- **AJAX:** Asynchronous requests to update attendance records without refreshing the entire page, enhancing user experience.\n- **Sessions:** User authentication and session management to control access to dashboard features based on login status.\n- **Password Hashing:** Secure storage and verification of user passwords using bcrypt hashing algorithm, ensuring data privacy and security.\n\nThe user interface of the Attendance System prioritizes simplicity, functionality, and responsiveness:\n\n- **Responsive Layout:** Built with Bootstrap for seamless adaptation to different screen sizes and devices.\n- **Clear Presentation:** Attendance details are presented clearly and organized, facilitating easy understanding and navigation.\n- **Intuitive Controls:** Buttons allow users to toggle attendance and save changes with ease, streamlining the attendance management process.\n\n## Installation\n\n1. Clone the repository:\n\n```\ngit clone https://github.com/createunique/INDTUBE_VIDEO_SHARING.git\n```\n\n2. Import the database schema from `database.sql` into your MySQL database.\n\n3. Update `includes/database.php` with your MySQL database credentials.\n\n4. **Update SMTP Details in `reset_password.php`:**\n\n   If you are using SMTP for sending password reset emails, you need to update the SMTP details in `reset_password.php` file:\n\n   ```php\n   // Replace the following SMTP details with your own SMTP configuration\n   $mail-\u003eHost       = 'smtp.gmail.com';                  // Set the SMTP server to send through\n   $mail-\u003eSMTPAuth   = true;                              // Enable SMTP authentication\n   $mail-\u003eUsername   = 'YOUR_GMAIL';                       // SMTP username\n   $mail-\u003ePassword   = 'GMAIL_PASSWORD';                   // SMTP password\n   $mail-\u003eSMTPSecure = PHPMailer::ENCRYPTION_SMTPS;        // Enable implicit TLS encryption\n   $mail-\u003ePort       = 465;                                // TCP port to connect to\n\n   $mail-\u003esetFrom('YOUR_GMAIL', 'INDTUBE');\n   ```\n   Replace 'YOUR_GMAIL' with your Gmail address and 'GMAIL_PASSWORD' with your Gmail password. Update other SMTP details like Host, Port, and any other authentication settings according to your SMTP server configuration.\n\n## Usage\n\n### Using Composer (recommended)\n1. Install PHP and Composer on your server.\n\n2. Create a new project:\n\n```\ncomposer create-project username/repository_name\n```\n\n3. Set up your web server to point to the public directory.\n\n4. Install PHPMailer using Composer:\n\n```\ncomposer require phpmailer/phpmailer\n```\n\n5. Access the admin panel in your web browser.\n\n### Manual Download\n1. Download the repository as a ZIP file and extract it.\n\n2. Upload the extracted files to your web server.\n\n3. Download PHPMailer from [GitHub](https://github.com/PHPMailer/PHPMailer) as a ZIP file.\n\n4. Extract the contents of the PHPMailer ZIP file.\n\n5. Copy the `PHPMailer` directory to your project directory.\n\n6. Now you should have a directory structure like this in your project:\n\n```\nyour-project-directory/\n├── PHPMailer/\n│ ├── src/\n│ └── ...\n├── includes/\n│ ├── database.php\n│ └── ...\n└── ...\n```\n\n7. Access the admin panel in your web browser.\n\n## Features\n\n- **Login:** Users can log in using their email and password.\n- **Registration:** New users can register for an account.\n- **Video Upload:** Admins can upload videos using an Excel file.\n- **Password Reset:** Users can reset their password using a link sent to their email.\n\n## Files\n\n- `index.php`: Main file for the admin panel.\n- `login.php`: Login page for users.\n- `registration.php`: Registration page for new users.\n- `videos.php`: Page for managing and displaying videos.\n- `reset_pass.php`: Page for initiating the password reset process.\n- `reset_password.php`: File for handling the password reset process.\n- `includes/`: Directory containing PHP files for database connection and other functions.\n\n## Project Flow\n\n### Admin User Registration:\nAdmin users need to register their accounts to access the system.\n\n### Excel File Upload:\nAfter registration, admins can upload Excel files containing video information. Each Excel file typically includes data like category, title, link, section, and subsection for each video.\n\n### Data Processing:\nUpon file upload, the server processes the Excel data, extracting relevant information using JavaScript (possibly with libraries like XLSX).\nThe data is then converted into JSON format for easier manipulation.\n\n### Database Update:\nThe processed video information is then uploaded to the database, likely in a structured format suitable for querying and retrieval.\n\n### Dashboard Display:\nOnce uploaded, the videos are displayed on a home or dashboard page.\nVideos are organized by section and subsection, possibly sorted in a specific order.\nEach video entry typically displays relevant information such as section, title, and a link to access the video.\n\n### User Interaction:\nUsers, including admins and possibly other roles, can interact with the dashboard to view, search, or filter videos based on their preferences.\n\n## Contributing\n\nFeel free to contribute to this project by submitting pull requests or reporting issues. Your feedback is highly appreciated.\n\n## License\n\nThis project is licensed under the MIT License - see the `LICENSE` file for details.\n\n---\n\nPlease replace `your-username` and `your-repository` with your actual GitHub username and repository name respectively. Also, make sure to replace the MySQL database credentials with your actual credentials in `includes/database.php`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcreateunique%2Findtube_video_sharing","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcreateunique%2Findtube_video_sharing","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcreateunique%2Findtube_video_sharing/lists"}