|
@@ -22,7 +22,7 @@
|
|
{% block title %}{% endblock %} | SimpleLogin
|
|
{% block title %}{% endblock %} | SimpleLogin
|
|
</title>
|
|
</title>
|
|
|
|
|
|
- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
|
|
|
|
+ <link rel="stylesheet" href="{{ url_for('static', filename='node_modules/font-awesome/css/font-awesome.css') }}">
|
|
|
|
|
|
<!-- Dashboard Core -->
|
|
<!-- Dashboard Core -->
|
|
<link href="/static/assets/css/dashboard.css" rel="stylesheet"/>
|
|
<link href="/static/assets/css/dashboard.css" rel="stylesheet"/>
|
|
@@ -43,12 +43,14 @@
|
|
<script src="/static/vendor/clipboard.min.js"></script>
|
|
<script src="/static/vendor/clipboard.min.js"></script>
|
|
|
|
|
|
<!-- Notie -->
|
|
<!-- Notie -->
|
|
- <link rel="stylesheet" type="text/css" href="https://unpkg.com/notie/dist/notie.min.css">
|
|
|
|
- <script src="/static/vendor/notie.min.js"></script>
|
|
|
|
|
|
+ <link rel="stylesheet" type="text/css"
|
|
|
|
+ href="{{ url_for('static', filename='node_modules/notie/dist/notie.min.css') }}">
|
|
|
|
+ <script src="{{ url_for('static', filename='node_modules/notie/dist/notie.min.js') }}"></script>
|
|
|
|
|
|
<!-- IntroJS -->
|
|
<!-- IntroJS -->
|
|
- <link rel="stylesheet" type="text/css" href="/static/vendor/introjs.min.css">
|
|
|
|
- <script src="/static/vendor/intro.min.js"></script>
|
|
|
|
|
|
+ <link rel="stylesheet" type="text/css"
|
|
|
|
+ href="{{ url_for('static', filename='node_modules/intro.js/minified/introjs.min.css') }}">
|
|
|
|
+ <script src="{{ url_for('static', filename='node_modules/intro.js/minified/intro.min.js') }}"></script>
|
|
|
|
|
|
<!-- Sentry -->
|
|
<!-- Sentry -->
|
|
<script
|
|
<script
|
|
@@ -56,11 +58,11 @@
|
|
integrity="sha384-FLzYisBa7tvsi/ZP1ISnzZJqBkmw5mvwk7KOmH82W9wdPZKG3bG9hSO8GQFVSlOu"
|
|
integrity="sha384-FLzYisBa7tvsi/ZP1ISnzZJqBkmw5mvwk7KOmH82W9wdPZKG3bG9hSO8GQFVSlOu"
|
|
crossorigin="anonymous"></script>
|
|
crossorigin="anonymous"></script>
|
|
|
|
|
|
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-social/4.12.0/bootstrap-social.min.css">
|
|
|
|
|
|
+ <link rel="stylesheet" href="/static/vendor/bootstrap-social.min.css">
|
|
|
|
|
|
<!-- Toastr library -->
|
|
<!-- Toastr library -->
|
|
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css">
|
|
|
|
- <script src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.js"></script>
|
|
|
|
|
|
+ <link rel="stylesheet" href="{{ url_for('static', filename='node_modules/toastr/build/toastr.min.css') }}">
|
|
|
|
+ <script src="{{ url_for('static', filename='node_modules/toastr/build/toastr.min.js') }}"></script>
|
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="/static/style.css?v={{ VERSION }}">
|
|
<link rel="stylesheet" type="text/css" href="/static/style.css?v={{ VERSION }}">
|
|
|
|
|