1.started removal of CDNs.\n 2. Improved modular structure for all parts of project including database.
This commit is contained in:
66
templates/DEPRECATED/layout - stripe.html
Normal file
66
templates/DEPRECATED/layout - stripe.html
Normal file
@@ -0,0 +1,66 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta charset="utf-8"/>
|
||||
<title>{% block title %}{% endblock %} - PARTS</title>
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src="{{ url_for('static', filename='js/shared.js') }}"></script>
|
||||
<script src="https://code.jquery.com/jquery-3.7.1.js"></script> <!-- Include jQuery from a CDN -->
|
||||
|
||||
<!-- Stylesheets -->
|
||||
<link href="{{ url_for('static', filename='css/shared.css') }}" rel="stylesheet" type="text/css"/>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="header card">
|
||||
<div class="content">
|
||||
<img class="header-logo" src="{{ url_for('static', filename='images/Logo.png') }}" alt="PARTS logo">
|
||||
</div>
|
||||
<div class="content">
|
||||
<h1>Precision And Research Technology Systems Limited</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="topnav">
|
||||
<a href="{{ url_for('routes_core.home') }}">Home</a> <!-- -->
|
||||
<a href="{{ url_for('routes_store.store_home') }}">Store</a>
|
||||
<!--
|
||||
<a href="{{ url_for('get_publishable_key') }}">Get Key</a>
|
||||
<a href="{{ url_for('get_checkout_session') }}">Get Session</a>
|
||||
|
||||
<!-- POST request form --
|
||||
<form id="formCreateCheckoutSession" action="{{ url_for('create_checkout_session') }}" method="POST" style="display: none; visibility: hidden;">
|
||||
<!-- your form fields go here --
|
||||
<input type="submit" value="Submit">
|
||||
</form>
|
||||
<a href="#" onclick="document.getElementById('formCreateCheckoutSession').submit();">About - Post Session</a>
|
||||
-->
|
||||
<a href="{{ url_for('routes_core.contact') }}" style="float:right">Contact</a>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
{% block content %}{% endblock %}
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
<h4>Copyright (C) Precision And Research Technology Systems Limited. All rights reserved.</h4>
|
||||
<h5>Company number 13587499</h5>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
<!-- Scripts --
|
||||
<script src="{{ url_for('static', filename='js/main.js') }}"></script>
|
||||
-->
|
||||
<!-- Include jQuery from a CDN --
|
||||
<script src="https://code.jquery.com/jquery-3.7.1.js"></script>
|
||||
-->
|
||||
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
// alert("naughty boy");
|
||||
});
|
||||
</script>
|
||||
Reference in New Issue
Block a user