diff options
Diffstat (limited to 'service/templates')
-rw-r--r-- | service/templates/Interstitial.html | 6 | ||||
-rw-r--r-- | service/templates/login.html | 10 |
2 files changed, 8 insertions, 8 deletions
diff --git a/service/templates/Interstitial.html b/service/templates/Interstitial.html index bc6cc738..7787a1c5 100644 --- a/service/templates/Interstitial.html +++ b/service/templates/Interstitial.html @@ -4,15 +4,15 @@ <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> - <script src="startup-assets/snap.svg-min.js"></script> - <script src="startup-assets/jquery-2.1.3.min.js"></script> + <script src="static/snap.svg-min.js"></script> + <script src="static/jquery-2.1.3.min.js"></script> </head> <body style="border: 0px; padding: 0px; margin: 0px;background-color: #808181"> <section id="hive-section" style="background-color: #808181;" name="hive-section"> <svg id="hive" style="width: 100%; height: 100%;"></svg> </section> - <script src="startup-assets/Interstitial.js"></script> + <script src="static/Interstitial.js"></script> </body> </html> diff --git a/service/templates/login.html b/service/templates/login.html index c2f5e78e..c60e9305 100644 --- a/service/templates/login.html +++ b/service/templates/login.html @@ -3,16 +3,16 @@ <head> <title>Pixelated - Login</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <link rel="icon" type="image/png" href="/startup-assets/favicon.png" /> - <link rel="stylesheet" type="text/css" href="/startup-assets/normalize.min.css" /> - <link rel="stylesheet" type="text/css" href="/startup-assets/pixelated.css" /> - <link rel="stylesheet" type="text/css" href="/startup-assets/opensans.css" /> + <link rel="icon" type="image/png" href="/static/favicon.png" /> + <link rel="stylesheet" type="text/css" href="/static/normalize.min.css" /> + <link rel="stylesheet" type="text/css" href="/static/pixelated.css" /> + <link rel="stylesheet" type="text/css" href="/static/opensans.css" /> </head> <body> <div class="content"> <div class="login"> - <img class="logo" src="/startup-assets/pixelated-logo-orange.svg" alt="Pixelated logo"/> + <img class="logo" src="/static/pixelated-logo-orange.svg" alt="Pixelated logo"/> <p t:render="error_msg" class="error" ></p> |