├── .gitignore ├── Documentation ├── Presentation.pdf ├── SDD.pdf ├── SRS.pdf └── User Manual.pdf ├── README.md ├── about.php ├── about_manager.php ├── admin ├── admin_about.php ├── admin_contact.php ├── admin_home.php ├── admin_profile.php ├── admin_projects.php ├── admin_services.php ├── create_hm.php ├── manager_profile.php └── students.php ├── allocate_room.php ├── allocated_rooms.php ├── application_form.php ├── contact.php ├── contact_manager.php ├── database ├── hostel_management_system_Application.sql ├── hostel_management_system_Hostel.sql ├── hostel_management_system_Hostel_Manager.sql ├── hostel_management_system_Message.sql ├── hostel_management_system_Room.sql └── hostel_management_system_Student.sql ├── dumping ├── profile.php └── web_profile │ ├── css │ ├── font-awesome.min.css │ └── style.css │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ ├── images │ ├── 2.jpg │ ├── a.jpg │ ├── cover.jpg │ ├── cover3.jpg │ ├── cover4.jpg │ ├── t.jpg │ ├── t3.jpg │ ├── tt.png │ ├── ttuser.jpg │ ├── tuser.jpg │ └── user.png │ └── w3layouts-License.txt ├── empty_rooms.php ├── error.php ├── home.php ├── home_manager.php ├── includes ├── config.inc.php ├── hm_remove.php ├── hm_signup.php ├── login-hm.inc.php ├── login.inc.php ├── logout.inc.php └── signup.inc.php ├── index.php ├── login-hostel_manager.php ├── message_hostel_manager.php ├── message_user.php ├── phpinfo.php ├── profile.php ├── projects.php ├── services.php ├── signup.php ├── single.php ├── templates ├── material_login_form_web_Free04-09-2018_262514557.zip ├── profile_subscribe_form-web_Free09-06-2017_1929730856.zip ├── web │ ├── css │ │ ├── fontawesome-all.css │ │ └── style.css │ ├── images │ │ └── cover4.jpg │ ├── index.html │ ├── w3layouts-License.txt │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 ├── web_profile │ ├── css │ │ ├── font-awesome.min.css │ │ ├── smoothbox.css │ │ └── style.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── images │ │ ├── 1.jpg │ │ ├── c.jpg │ │ ├── c1.jpg │ │ ├── c2.jpg │ │ ├── c3.jpg │ │ ├── c4.jpg │ │ ├── c5.jpg │ │ └── c6.jpg │ ├── js │ │ ├── jquery-2.1.3.min.js │ │ ├── sliding.form.js │ │ └── smoothbox.jquery2.js │ ├── profile.php │ └── w3layouts-License.txt └── web_profile1 │ ├── css │ ├── font-awesome.min.css │ └── style.css │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ ├── images │ ├── 2.jpg │ └── t3.jpg │ ├── profile.php │ └── w3layouts-License.txt ├── test.php ├── vacate_rooms.php ├── web ├── css │ ├── fontawesome-all.css │ └── style.css ├── images │ ├── a.jpg │ ├── cover.jpg │ ├── cover3.jpg │ └── cover4.jpg └── webfonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900.woff2 ├── web_home ├── css_home │ ├── bootstrap.css │ ├── flexslider.css │ ├── fontawesome-all.css │ ├── images │ │ └── cd-icon-arrows.svg │ ├── ken-burns.css │ ├── slider.css │ ├── style.css │ └── swipebox.css ├── images │ ├── 1.png │ ├── 12.jpg │ ├── 2.png │ ├── 212.jpg │ ├── 22.jpg │ ├── 3.png │ ├── 31.jpg │ ├── 4.jpg │ ├── a1.jpg │ ├── a2.jpg │ ├── a3.jpg │ ├── a4.jpg │ ├── arr.png │ ├── arrows.png │ ├── cd-icon-arrows.svg │ ├── icons.svg │ ├── s1.jpg │ ├── s2.jpg │ ├── s3.jpg │ ├── s4.jpg │ ├── search-icon.png │ ├── t1.jpg │ ├── t2.jpg │ ├── t3.jpg │ └── t4.jpg ├── js │ ├── SmoothScroll.min.js │ ├── bootstrap.js │ ├── easing.js │ ├── jquery-2.2.3.min.js │ ├── jquery.countup.js │ ├── jquery.flexslider.js │ ├── jquery.swipebox.min.js │ ├── jquery.waypoints.min.js │ ├── main.js │ ├── move-top.js │ └── snap.svg-min.js └── webfonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900.woff2 └── web_profile ├── css ├── font-awesome.min.css ├── smoothbox.css └── style.css ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff └── fontawesome-webfont.woff2 ├── images ├── 1.jpg ├── 3.png ├── a.jpg ├── c.png ├── c1.jpg ├── c2.jpg ├── c3.jpg ├── c4.jpg ├── c5.jpg ├── c6.jpg ├── cover.jpg ├── cover3.jpg ├── cover4.jpg ├── hostel.jpg ├── hostel.png └── ss.jpg ├── js ├── jquery-2.1.3.min.js ├── sliding.form.js └── smoothbox.jquery2.js └── w3layouts-License.txt /.gitignore: -------------------------------------------------------------------------------- 1 | includes/config.inc.php 2 | -------------------------------------------------------------------------------- /Documentation/Presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/Documentation/Presentation.pdf -------------------------------------------------------------------------------- /Documentation/SDD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/Documentation/SDD.pdf -------------------------------------------------------------------------------- /Documentation/SRS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/Documentation/SRS.pdf -------------------------------------------------------------------------------- /Documentation/User Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/Documentation/User Manual.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/README.md -------------------------------------------------------------------------------- /about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/about.php -------------------------------------------------------------------------------- /about_manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/about_manager.php -------------------------------------------------------------------------------- /admin/admin_about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/admin/admin_about.php -------------------------------------------------------------------------------- /admin/admin_contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/admin/admin_contact.php -------------------------------------------------------------------------------- /admin/admin_home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/admin/admin_home.php -------------------------------------------------------------------------------- /admin/admin_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/admin/admin_profile.php -------------------------------------------------------------------------------- /admin/admin_projects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/admin/admin_projects.php -------------------------------------------------------------------------------- /admin/admin_services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/admin/admin_services.php -------------------------------------------------------------------------------- /admin/create_hm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/admin/create_hm.php -------------------------------------------------------------------------------- /admin/manager_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/admin/manager_profile.php -------------------------------------------------------------------------------- /admin/students.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/admin/students.php -------------------------------------------------------------------------------- /allocate_room.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/allocate_room.php -------------------------------------------------------------------------------- /allocated_rooms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/allocated_rooms.php -------------------------------------------------------------------------------- /application_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/application_form.php -------------------------------------------------------------------------------- /contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/contact.php -------------------------------------------------------------------------------- /contact_manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/contact_manager.php -------------------------------------------------------------------------------- /database/hostel_management_system_Application.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/database/hostel_management_system_Application.sql -------------------------------------------------------------------------------- /database/hostel_management_system_Hostel.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/database/hostel_management_system_Hostel.sql -------------------------------------------------------------------------------- /database/hostel_management_system_Hostel_Manager.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/database/hostel_management_system_Hostel_Manager.sql -------------------------------------------------------------------------------- /database/hostel_management_system_Message.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/database/hostel_management_system_Message.sql -------------------------------------------------------------------------------- /database/hostel_management_system_Room.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/database/hostel_management_system_Room.sql -------------------------------------------------------------------------------- /database/hostel_management_system_Student.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/database/hostel_management_system_Student.sql -------------------------------------------------------------------------------- /dumping/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/dumping/profile.php -------------------------------------------------------------------------------- /dumping/web_profile/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/dumping/web_profile/css/font-awesome.min.css -------------------------------------------------------------------------------- /dumping/web_profile/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/dumping/web_profile/css/style.css -------------------------------------------------------------------------------- /dumping/web_profile/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/dumping/web_profile/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /dumping/web_profile/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/dumping/web_profile/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /dumping/web_profile/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/dumping/web_profile/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /dumping/web_profile/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/dumping/web_profile/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /dumping/web_profile/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/dumping/web_profile/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /dumping/web_profile/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/dumping/web_profile/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /dumping/web_profile/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/dumping/web_profile/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /dumping/web_profile/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/dumping/web_profile/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /dumping/web_profile/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/dumping/web_profile/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /dumping/web_profile/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/dumping/web_profile/images/2.jpg -------------------------------------------------------------------------------- /dumping/web_profile/images/a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/dumping/web_profile/images/a.jpg -------------------------------------------------------------------------------- /dumping/web_profile/images/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/dumping/web_profile/images/cover.jpg -------------------------------------------------------------------------------- /dumping/web_profile/images/cover3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/dumping/web_profile/images/cover3.jpg -------------------------------------------------------------------------------- /dumping/web_profile/images/cover4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/dumping/web_profile/images/cover4.jpg -------------------------------------------------------------------------------- /dumping/web_profile/images/t.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/dumping/web_profile/images/t.jpg -------------------------------------------------------------------------------- /dumping/web_profile/images/t3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/dumping/web_profile/images/t3.jpg -------------------------------------------------------------------------------- /dumping/web_profile/images/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/dumping/web_profile/images/tt.png -------------------------------------------------------------------------------- /dumping/web_profile/images/ttuser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/dumping/web_profile/images/ttuser.jpg -------------------------------------------------------------------------------- /dumping/web_profile/images/tuser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/dumping/web_profile/images/tuser.jpg -------------------------------------------------------------------------------- /dumping/web_profile/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/dumping/web_profile/images/user.png -------------------------------------------------------------------------------- /dumping/web_profile/w3layouts-License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/dumping/web_profile/w3layouts-License.txt -------------------------------------------------------------------------------- /empty_rooms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/empty_rooms.php -------------------------------------------------------------------------------- /error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/error.php -------------------------------------------------------------------------------- /home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/home.php -------------------------------------------------------------------------------- /home_manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/home_manager.php -------------------------------------------------------------------------------- /includes/config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/includes/config.inc.php -------------------------------------------------------------------------------- /includes/hm_remove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/includes/hm_remove.php -------------------------------------------------------------------------------- /includes/hm_signup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/includes/hm_signup.php -------------------------------------------------------------------------------- /includes/login-hm.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/includes/login-hm.inc.php -------------------------------------------------------------------------------- /includes/login.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/includes/login.inc.php -------------------------------------------------------------------------------- /includes/logout.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/includes/logout.inc.php -------------------------------------------------------------------------------- /includes/signup.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/includes/signup.inc.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/index.php -------------------------------------------------------------------------------- /login-hostel_manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/login-hostel_manager.php -------------------------------------------------------------------------------- /message_hostel_manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/message_hostel_manager.php -------------------------------------------------------------------------------- /message_user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/message_user.php -------------------------------------------------------------------------------- /phpinfo.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/profile.php -------------------------------------------------------------------------------- /projects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/projects.php -------------------------------------------------------------------------------- /services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/services.php -------------------------------------------------------------------------------- /signup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/signup.php -------------------------------------------------------------------------------- /single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/single.php -------------------------------------------------------------------------------- /templates/material_login_form_web_Free04-09-2018_262514557.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/material_login_form_web_Free04-09-2018_262514557.zip -------------------------------------------------------------------------------- /templates/profile_subscribe_form-web_Free09-06-2017_1929730856.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/profile_subscribe_form-web_Free09-06-2017_1929730856.zip -------------------------------------------------------------------------------- /templates/web/css/fontawesome-all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web/css/fontawesome-all.css -------------------------------------------------------------------------------- /templates/web/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web/css/style.css -------------------------------------------------------------------------------- /templates/web/images/cover4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web/images/cover4.jpg -------------------------------------------------------------------------------- /templates/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web/index.html -------------------------------------------------------------------------------- /templates/web/w3layouts-License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web/w3layouts-License.txt -------------------------------------------------------------------------------- /templates/web/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /templates/web/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /templates/web/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /templates/web/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /templates/web/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /templates/web/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /templates/web/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /templates/web/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /templates/web/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /templates/web/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /templates/web/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /templates/web/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /templates/web/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /templates/web/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /templates/web/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /templates/web_profile/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile/css/font-awesome.min.css -------------------------------------------------------------------------------- /templates/web_profile/css/smoothbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile/css/smoothbox.css -------------------------------------------------------------------------------- /templates/web_profile/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile/css/style.css -------------------------------------------------------------------------------- /templates/web_profile/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /templates/web_profile/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /templates/web_profile/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /templates/web_profile/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /templates/web_profile/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /templates/web_profile/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /templates/web_profile/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile/images/1.jpg -------------------------------------------------------------------------------- /templates/web_profile/images/c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile/images/c.jpg -------------------------------------------------------------------------------- /templates/web_profile/images/c1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile/images/c1.jpg -------------------------------------------------------------------------------- /templates/web_profile/images/c2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile/images/c2.jpg -------------------------------------------------------------------------------- /templates/web_profile/images/c3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile/images/c3.jpg -------------------------------------------------------------------------------- /templates/web_profile/images/c4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile/images/c4.jpg -------------------------------------------------------------------------------- /templates/web_profile/images/c5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile/images/c5.jpg -------------------------------------------------------------------------------- /templates/web_profile/images/c6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile/images/c6.jpg -------------------------------------------------------------------------------- /templates/web_profile/js/jquery-2.1.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile/js/jquery-2.1.3.min.js -------------------------------------------------------------------------------- /templates/web_profile/js/sliding.form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile/js/sliding.form.js -------------------------------------------------------------------------------- /templates/web_profile/js/smoothbox.jquery2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile/js/smoothbox.jquery2.js -------------------------------------------------------------------------------- /templates/web_profile/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile/profile.php -------------------------------------------------------------------------------- /templates/web_profile/w3layouts-License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile/w3layouts-License.txt -------------------------------------------------------------------------------- /templates/web_profile1/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile1/css/font-awesome.min.css -------------------------------------------------------------------------------- /templates/web_profile1/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile1/css/style.css -------------------------------------------------------------------------------- /templates/web_profile1/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile1/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /templates/web_profile1/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile1/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /templates/web_profile1/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile1/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /templates/web_profile1/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile1/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /templates/web_profile1/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile1/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /templates/web_profile1/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile1/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /templates/web_profile1/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile1/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /templates/web_profile1/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile1/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /templates/web_profile1/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile1/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /templates/web_profile1/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile1/images/2.jpg -------------------------------------------------------------------------------- /templates/web_profile1/images/t3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile1/images/t3.jpg -------------------------------------------------------------------------------- /templates/web_profile1/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile1/profile.php -------------------------------------------------------------------------------- /templates/web_profile1/w3layouts-License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/templates/web_profile1/w3layouts-License.txt -------------------------------------------------------------------------------- /test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/test.php -------------------------------------------------------------------------------- /vacate_rooms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/vacate_rooms.php -------------------------------------------------------------------------------- /web/css/fontawesome-all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web/css/fontawesome-all.css -------------------------------------------------------------------------------- /web/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web/css/style.css -------------------------------------------------------------------------------- /web/images/a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web/images/a.jpg -------------------------------------------------------------------------------- /web/images/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web/images/cover.jpg -------------------------------------------------------------------------------- /web/images/cover3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web/images/cover3.jpg -------------------------------------------------------------------------------- /web/images/cover4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web/images/cover4.jpg -------------------------------------------------------------------------------- /web/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /web/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /web/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /web/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /web/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /web/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /web/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /web/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /web/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /web/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /web/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /web/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /web/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /web/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /web/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /web_home/css_home/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/css_home/bootstrap.css -------------------------------------------------------------------------------- /web_home/css_home/flexslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/css_home/flexslider.css -------------------------------------------------------------------------------- /web_home/css_home/fontawesome-all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/css_home/fontawesome-all.css -------------------------------------------------------------------------------- /web_home/css_home/images/cd-icon-arrows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/css_home/images/cd-icon-arrows.svg -------------------------------------------------------------------------------- /web_home/css_home/ken-burns.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/css_home/ken-burns.css -------------------------------------------------------------------------------- /web_home/css_home/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/css_home/slider.css -------------------------------------------------------------------------------- /web_home/css_home/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/css_home/style.css -------------------------------------------------------------------------------- /web_home/css_home/swipebox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/css_home/swipebox.css -------------------------------------------------------------------------------- /web_home/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/1.png -------------------------------------------------------------------------------- /web_home/images/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/12.jpg -------------------------------------------------------------------------------- /web_home/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/2.png -------------------------------------------------------------------------------- /web_home/images/212.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/212.jpg -------------------------------------------------------------------------------- /web_home/images/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/22.jpg -------------------------------------------------------------------------------- /web_home/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/3.png -------------------------------------------------------------------------------- /web_home/images/31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/31.jpg -------------------------------------------------------------------------------- /web_home/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/4.jpg -------------------------------------------------------------------------------- /web_home/images/a1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/a1.jpg -------------------------------------------------------------------------------- /web_home/images/a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/a2.jpg -------------------------------------------------------------------------------- /web_home/images/a3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/a3.jpg -------------------------------------------------------------------------------- /web_home/images/a4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/a4.jpg -------------------------------------------------------------------------------- /web_home/images/arr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/arr.png -------------------------------------------------------------------------------- /web_home/images/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/arrows.png -------------------------------------------------------------------------------- /web_home/images/cd-icon-arrows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/cd-icon-arrows.svg -------------------------------------------------------------------------------- /web_home/images/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/icons.svg -------------------------------------------------------------------------------- /web_home/images/s1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/s1.jpg -------------------------------------------------------------------------------- /web_home/images/s2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/s2.jpg -------------------------------------------------------------------------------- /web_home/images/s3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/s3.jpg -------------------------------------------------------------------------------- /web_home/images/s4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/s4.jpg -------------------------------------------------------------------------------- /web_home/images/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/search-icon.png -------------------------------------------------------------------------------- /web_home/images/t1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/t1.jpg -------------------------------------------------------------------------------- /web_home/images/t2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/t2.jpg -------------------------------------------------------------------------------- /web_home/images/t3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/t3.jpg -------------------------------------------------------------------------------- /web_home/images/t4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/images/t4.jpg -------------------------------------------------------------------------------- /web_home/js/SmoothScroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/js/SmoothScroll.min.js -------------------------------------------------------------------------------- /web_home/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/js/bootstrap.js -------------------------------------------------------------------------------- /web_home/js/easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/js/easing.js -------------------------------------------------------------------------------- /web_home/js/jquery-2.2.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/js/jquery-2.2.3.min.js -------------------------------------------------------------------------------- /web_home/js/jquery.countup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/js/jquery.countup.js -------------------------------------------------------------------------------- /web_home/js/jquery.flexslider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/js/jquery.flexslider.js -------------------------------------------------------------------------------- /web_home/js/jquery.swipebox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/js/jquery.swipebox.min.js -------------------------------------------------------------------------------- /web_home/js/jquery.waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/js/jquery.waypoints.min.js -------------------------------------------------------------------------------- /web_home/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/js/main.js -------------------------------------------------------------------------------- /web_home/js/move-top.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/js/move-top.js -------------------------------------------------------------------------------- /web_home/js/snap.svg-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/js/snap.svg-min.js -------------------------------------------------------------------------------- /web_home/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /web_home/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /web_home/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /web_home/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /web_home/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /web_home/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /web_home/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /web_home/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /web_home/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /web_home/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /web_home/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /web_home/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /web_home/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /web_home/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /web_home/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_home/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /web_profile/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/css/font-awesome.min.css -------------------------------------------------------------------------------- /web_profile/css/smoothbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/css/smoothbox.css -------------------------------------------------------------------------------- /web_profile/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/css/style.css -------------------------------------------------------------------------------- /web_profile/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /web_profile/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /web_profile/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /web_profile/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /web_profile/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /web_profile/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /web_profile/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/images/1.jpg -------------------------------------------------------------------------------- /web_profile/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/images/3.png -------------------------------------------------------------------------------- /web_profile/images/a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/images/a.jpg -------------------------------------------------------------------------------- /web_profile/images/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/images/c.png -------------------------------------------------------------------------------- /web_profile/images/c1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/images/c1.jpg -------------------------------------------------------------------------------- /web_profile/images/c2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/images/c2.jpg -------------------------------------------------------------------------------- /web_profile/images/c3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/images/c3.jpg -------------------------------------------------------------------------------- /web_profile/images/c4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/images/c4.jpg -------------------------------------------------------------------------------- /web_profile/images/c5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/images/c5.jpg -------------------------------------------------------------------------------- /web_profile/images/c6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/images/c6.jpg -------------------------------------------------------------------------------- /web_profile/images/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/images/cover.jpg -------------------------------------------------------------------------------- /web_profile/images/cover3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/images/cover3.jpg -------------------------------------------------------------------------------- /web_profile/images/cover4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/images/cover4.jpg -------------------------------------------------------------------------------- /web_profile/images/hostel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/images/hostel.jpg -------------------------------------------------------------------------------- /web_profile/images/hostel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/images/hostel.png -------------------------------------------------------------------------------- /web_profile/images/ss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/images/ss.jpg -------------------------------------------------------------------------------- /web_profile/js/jquery-2.1.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/js/jquery-2.1.3.min.js -------------------------------------------------------------------------------- /web_profile/js/sliding.form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/js/sliding.form.js -------------------------------------------------------------------------------- /web_profile/js/smoothbox.jquery2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/js/smoothbox.jquery2.js -------------------------------------------------------------------------------- /web_profile/w3layouts-License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bharat-Reddy/Hostel-Management-System/HEAD/web_profile/w3layouts-License.txt --------------------------------------------------------------------------------