diff --git a/backup/templates/baselayout.html b/backup/templates/baselayout.html new file mode 100644 index 0000000000000000000000000000000000000000..2f6349af19614c7eb7728f9efe61af20504eb948 --- /dev/null +++ b/backup/templates/baselayout.html @@ -0,0 +1,45 @@ +<html> + <head> + <meta name="viewport" content="width=device-width, initial-scale=0.6"> + {% block head %} + <link rel="stylesheet" href="{{ url_for('static', filename='website.css') }}"> + <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/> + <title>Placeholder - {% block title %}{% endblock %}</title> + {% endblock %} + </head> + <body> + {% block header %} + <header> + <div class="topnav"> + <img src="{{ url_for('static', filename = 'logo.png') }}" class="logo"></a> + <nav> + <ul class="nav__links"> + <li><a class="active1" href="/index">Welcome</a></li> + <li><a class="active2" href="/itemlist">Book a room</a></li> + <li><a class="active3" href="/aboutus">About us</a></li> + <li style="padding-left: 100px"></li> + <li><a class="login1" href="/login">Login</a></li> + <li><a class="login2" href="/register">Register</a></li> + </ul> + </nav> + <p class="menu cta">Menu</p> + </div> + </header> + + {% endblock %} + {% block content %} + {% endblock %} + {% block credits %} + <div class="animate__animated animate__bounceInUp" id="cookie" style="display: none;"> + <p> + Dusty Capitalist uses Cookies to enhance the experience of the website, as well as to maintain certain services. <br> + You can find more information in the <a href="aboutus">Cookie Policy.</a> + By clicking on the button below, you have read and aggreed to our policy.<br> + <br><button type="submit" id="buttoncookie">Agree and Close</button> + </p> + </div> + <b><p class="credits">Online Store - 2023</p></b> + <script type="text/javascript" src="{{ url_for('static', filename = 'cookie.js') }}"></script> + {% endblock %} + </body> +</html> \ No newline at end of file