diff options
author | Michaël Ball <michael.ball@gmail.com> | 2015-12-05 16:42:26 +0000 |
---|---|---|
committer | Michaël Ball <michael.ball@gmail.com> | 2015-12-05 16:42:26 +0000 |
commit | 9715f7538e4869bc3369bfdb0f2bb83b9d04f5d0 (patch) | |
tree | 13c521696d7a93a570dee4bfb09a30e9502dc71e /templates | |
parent | 75beec91a8526fbbc0a90134140b9dff6af15c0c (diff) |
Fix broken imports
Diffstat (limited to 'templates')
-rw-r--r-- | templates/login.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/login.html b/templates/login.html index 0f3d529..e9a6ba5 100644 --- a/templates/login.html +++ b/templates/login.html @@ -4,9 +4,9 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Mach2</title> - <script src="{{ url_for('static', filename='scripts/lib/jquery/jquery.js') }}"></script> - <script src="{{ url_for('static', filename='scripts/lib/bootstrap/js/bootstrap.js') }}"></script> - <link rel="stylesheet" href="{{ url_for('static', filename='scripts/lib/bootstrap/css/bootstrap.css') }}"> + <script src="{{ url_for('static', filename='scripts/libs/jquery/jquery.js') }}"></script> + <script src="{{ url_for('static', filename='scripts/libs/bootstrap/js/bootstrap.js') }}"></script> + <link rel="stylesheet" href="{{ url_for('static', filename='scripts/libs/bootstrap/css/bootstrap.css') }}"> </head> <body> <div class="container"> |