2023-02-17 16:59:42 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2023-03-29 18:06:46 -04:00
|
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
2023-02-17 16:59:42 -05:00
|
|
|
<link
|
|
|
|
|
href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css"
|
|
|
|
|
rel="stylesheet"
|
|
|
|
|
/>
|
2023-02-27 16:04:19 -05:00
|
|
|
<link rel="shortcut icon" href="{{ url_for('static', filename='np-favicon.png') }}">
|
2023-02-21 16:59:41 -05:00
|
|
|
<title>CSM Bulk App</title>
|
2023-02-17 16:59:42 -05:00
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap"
|
|
|
|
|
rel="stylesheet">
|
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename="css/styles.css") }}" />
|
2023-03-13 17:23:56 -04:00
|
|
|
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
|
2023-02-21 16:59:41 -05:00
|
|
|
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
|
2023-03-15 17:07:34 -04:00
|
|
|
<script src="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@1.2.2/code-input.min.js"></script>
|
2023-04-14 14:48:41 -04:00
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@1.2/plugins/prism-line-numbers.min.css">
|
2023-03-15 17:07:34 -04:00
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/WebCoder49/code-input@1.2.2/code-input.min.css">
|
2023-03-13 17:23:56 -04:00
|
|
|
<link href="{{ url_for('static', filename='css/prism.css')}}" rel="stylesheet" />
|
2023-02-17 16:59:42 -05:00
|
|
|
</head>
|
2023-02-21 16:59:41 -05:00
|
|
|
<body>
|
2023-02-17 16:59:42 -05:00
|
|
|
{% block content %} {% endblock %}
|
2023-04-05 18:47:39 -04:00
|
|
|
{% include 'footer_button.html'%}
|
2023-03-13 17:23:56 -04:00
|
|
|
<script src="{{ url_for('static', filename='css/prism.js' )}}"></script>
|
|
|
|
|
<script src="//cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.7.0/build/highlight.min.js"></script>
|
|
|
|
|
<script>
|
|
|
|
|
if ( window.history.replaceState ) {
|
|
|
|
|
window.history.replaceState( null, null, window.location.href );
|
|
|
|
|
}
|
|
|
|
|
</script>
|
2023-03-01 17:05:16 -05:00
|
|
|
</body>
|
2023-02-17 16:59:42 -05:00
|
|
|
</html>
|