added login modal and registration modal

This commit is contained in:
StockiP
2022-04-26 17:54:09 +02:00
parent 5bb598bbcb
commit 4e646b3858
5 changed files with 89 additions and 2 deletions

11
js/app.js Normal file
View File

@@ -0,0 +1,11 @@
"use strict";
$(document).ready(function () {
$('#top_nav_bar').load('../components/top_nav.html');
$('#main_nav_bar').load('../components/main_nav.html');
$('#mmlcarousel').load('../components/banner.html');
$('#mmlMainContent').load('../components/ftProducts.html');
$('#marmeladenladen_footer').load('../components/footer.html');
$('#marmeladenladen_search').load('../components/modal.html');
$('#marmeladenladenLogin').load('../components/loginModal.html');
$('#marmeladenladenRegister').load('../components/registerModal.html');
});