├── README.md ├── assets ├── assets │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── prism.css │ ├── img │ │ ├── connect.png │ │ └── default.svg │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-3.2.1.slim.min.js │ │ ├── lazysizes.min.js │ │ ├── popper.min.js │ │ ├── prism.js │ │ └── twemoji.min.js ├── css │ └── style.css └── image │ ├── arrow-left.svg │ ├── arrow-right.svg │ ├── artikel-1.jpg │ ├── artikel-2.jpg │ ├── contact_toba.JPG │ ├── detail_artikel1.JPG │ ├── event-1.JPG │ ├── foto profile.JPG │ ├── foto1.png │ ├── foto2.png │ ├── galeri-1-1.JPG │ ├── galeri-1-2.JPG │ ├── galeri-1-3.JPG │ ├── galeri-2.JPG │ ├── galeri11.JPG │ ├── galeri13.JPG │ ├── galeri2.JPG │ ├── icon.png │ ├── klien-1.webp │ ├── klien-2.webp │ ├── klien-3.webp │ ├── klien-4.webp │ ├── klien-5.webp │ ├── klien-6.webp │ ├── logo-no-bg.png │ ├── logo.png │ ├── logoheader.jpg │ ├── produk-1-1.webp │ ├── produk-1-2.webp │ ├── produk-1-3.webp │ ├── produk-1.webp │ ├── produk-2.webp │ ├── produk-3.webp │ ├── produk-4.webp │ ├── produk-5.webp │ ├── produk-6.webp │ ├── produk-7.webp │ ├── produk-8.webp │ ├── produk.jpg │ ├── profile.png │ ├── sebatas_aspal.jpg │ ├── tentangkami-1.jpg │ ├── tentangkami-2.webp │ ├── tentangkami.JPG │ └── visimisi.JPG ├── cek_login.php ├── config └── database.php ├── functions ├── controller.php ├── db_function.php └── query.php ├── index.php ├── login.php ├── logout.php ├── tampilan_halaman.pdf ├── views ├── layout │ ├── Beranda Cover.php │ ├── footer.php │ ├── header.php │ └── sidebar.php └── pages │ ├── about.php │ ├── article.php │ ├── articledetail.php │ ├── contact.php │ ├── event.php │ ├── eventdetail.php │ ├── gallery.php │ ├── home.php │ ├── klien.php │ ├── product.php │ ├── productdetail.php │ ├── profile.php │ └── vimission.php └── web_motor_toba.sql /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/README.md -------------------------------------------------------------------------------- /assets/assets/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/assets/css/bootstrap-grid.css -------------------------------------------------------------------------------- /assets/assets/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/assets/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /assets/assets/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/assets/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /assets/assets/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/assets/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /assets/assets/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/assets/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /assets/assets/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/assets/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /assets/assets/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/assets/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /assets/assets/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/assets/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /assets/assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/assets/css/bootstrap.css -------------------------------------------------------------------------------- /assets/assets/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/assets/css/bootstrap.css.map -------------------------------------------------------------------------------- /assets/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /assets/assets/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/assets/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /assets/assets/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/assets/css/prism.css -------------------------------------------------------------------------------- /assets/assets/img/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/assets/img/connect.png -------------------------------------------------------------------------------- /assets/assets/img/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/assets/img/default.svg -------------------------------------------------------------------------------- /assets/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/assets/js/bootstrap.js -------------------------------------------------------------------------------- /assets/assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/assets/js/jquery-3.2.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/assets/js/jquery-3.2.1.slim.min.js -------------------------------------------------------------------------------- /assets/assets/js/lazysizes.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/assets/js/lazysizes.min.js -------------------------------------------------------------------------------- /assets/assets/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/assets/js/popper.min.js -------------------------------------------------------------------------------- /assets/assets/js/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/assets/js/prism.js -------------------------------------------------------------------------------- /assets/assets/js/twemoji.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/assets/js/twemoji.min.js -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/image/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/arrow-left.svg -------------------------------------------------------------------------------- /assets/image/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/arrow-right.svg -------------------------------------------------------------------------------- /assets/image/artikel-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/artikel-1.jpg -------------------------------------------------------------------------------- /assets/image/artikel-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/artikel-2.jpg -------------------------------------------------------------------------------- /assets/image/contact_toba.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/contact_toba.JPG -------------------------------------------------------------------------------- /assets/image/detail_artikel1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/detail_artikel1.JPG -------------------------------------------------------------------------------- /assets/image/event-1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/event-1.JPG -------------------------------------------------------------------------------- /assets/image/foto profile.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/foto profile.JPG -------------------------------------------------------------------------------- /assets/image/foto1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/foto1.png -------------------------------------------------------------------------------- /assets/image/foto2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/foto2.png -------------------------------------------------------------------------------- /assets/image/galeri-1-1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/galeri-1-1.JPG -------------------------------------------------------------------------------- /assets/image/galeri-1-2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/galeri-1-2.JPG -------------------------------------------------------------------------------- /assets/image/galeri-1-3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/galeri-1-3.JPG -------------------------------------------------------------------------------- /assets/image/galeri-2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/galeri-2.JPG -------------------------------------------------------------------------------- /assets/image/galeri11.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/galeri11.JPG -------------------------------------------------------------------------------- /assets/image/galeri13.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/galeri13.JPG -------------------------------------------------------------------------------- /assets/image/galeri2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/galeri2.JPG -------------------------------------------------------------------------------- /assets/image/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/icon.png -------------------------------------------------------------------------------- /assets/image/klien-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/klien-1.webp -------------------------------------------------------------------------------- /assets/image/klien-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/klien-2.webp -------------------------------------------------------------------------------- /assets/image/klien-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/klien-3.webp -------------------------------------------------------------------------------- /assets/image/klien-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/klien-4.webp -------------------------------------------------------------------------------- /assets/image/klien-5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/klien-5.webp -------------------------------------------------------------------------------- /assets/image/klien-6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/klien-6.webp -------------------------------------------------------------------------------- /assets/image/logo-no-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/logo-no-bg.png -------------------------------------------------------------------------------- /assets/image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/logo.png -------------------------------------------------------------------------------- /assets/image/logoheader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/logoheader.jpg -------------------------------------------------------------------------------- /assets/image/produk-1-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/produk-1-1.webp -------------------------------------------------------------------------------- /assets/image/produk-1-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/produk-1-2.webp -------------------------------------------------------------------------------- /assets/image/produk-1-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/produk-1-3.webp -------------------------------------------------------------------------------- /assets/image/produk-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/produk-1.webp -------------------------------------------------------------------------------- /assets/image/produk-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/produk-2.webp -------------------------------------------------------------------------------- /assets/image/produk-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/produk-3.webp -------------------------------------------------------------------------------- /assets/image/produk-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/produk-4.webp -------------------------------------------------------------------------------- /assets/image/produk-5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/produk-5.webp -------------------------------------------------------------------------------- /assets/image/produk-6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/produk-6.webp -------------------------------------------------------------------------------- /assets/image/produk-7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/produk-7.webp -------------------------------------------------------------------------------- /assets/image/produk-8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/produk-8.webp -------------------------------------------------------------------------------- /assets/image/produk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/produk.jpg -------------------------------------------------------------------------------- /assets/image/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/profile.png -------------------------------------------------------------------------------- /assets/image/sebatas_aspal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/sebatas_aspal.jpg -------------------------------------------------------------------------------- /assets/image/tentangkami-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/tentangkami-1.jpg -------------------------------------------------------------------------------- /assets/image/tentangkami-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/tentangkami-2.webp -------------------------------------------------------------------------------- /assets/image/tentangkami.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/tentangkami.JPG -------------------------------------------------------------------------------- /assets/image/visimisi.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/assets/image/visimisi.JPG -------------------------------------------------------------------------------- /cek_login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/cek_login.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/config/database.php -------------------------------------------------------------------------------- /functions/controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/functions/controller.php -------------------------------------------------------------------------------- /functions/db_function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/functions/db_function.php -------------------------------------------------------------------------------- /functions/query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/functions/query.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/index.php -------------------------------------------------------------------------------- /login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/login.php -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/logout.php -------------------------------------------------------------------------------- /tampilan_halaman.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/tampilan_halaman.pdf -------------------------------------------------------------------------------- /views/layout/Beranda Cover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/views/layout/Beranda Cover.php -------------------------------------------------------------------------------- /views/layout/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/views/layout/footer.php -------------------------------------------------------------------------------- /views/layout/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/views/layout/header.php -------------------------------------------------------------------------------- /views/layout/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/views/layout/sidebar.php -------------------------------------------------------------------------------- /views/pages/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/views/pages/about.php -------------------------------------------------------------------------------- /views/pages/article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/views/pages/article.php -------------------------------------------------------------------------------- /views/pages/articledetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/views/pages/articledetail.php -------------------------------------------------------------------------------- /views/pages/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/views/pages/contact.php -------------------------------------------------------------------------------- /views/pages/event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/views/pages/event.php -------------------------------------------------------------------------------- /views/pages/eventdetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/views/pages/eventdetail.php -------------------------------------------------------------------------------- /views/pages/gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/views/pages/gallery.php -------------------------------------------------------------------------------- /views/pages/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/views/pages/home.php -------------------------------------------------------------------------------- /views/pages/klien.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/views/pages/klien.php -------------------------------------------------------------------------------- /views/pages/product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/views/pages/product.php -------------------------------------------------------------------------------- /views/pages/productdetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/views/pages/productdetail.php -------------------------------------------------------------------------------- /views/pages/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/views/pages/profile.php -------------------------------------------------------------------------------- /views/pages/vimission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/views/pages/vimission.php -------------------------------------------------------------------------------- /web_motor_toba.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sionpardosi/Development-of-Bikers-Brotherhood-TOBA-1-MC-Website-Application-JWD-Junior-Web-Developer-/HEAD/web_motor_toba.sql --------------------------------------------------------------------------------