diff --git a/app/templates/auth/SignUp.html b/app/templates/auth/SignUp.html index a1980b31f4cdc962d468a33a0f1c04d266caf69c..cd8a3a6e5d56dd8e2663bb479f60d687cb501a85 100644 --- a/app/templates/auth/SignUp.html +++ b/app/templates/auth/SignUp.html @@ -3,7 +3,7 @@ <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/1.7.3/socket.io.min.js"></script> -<script src="static/scripts/function.js"></script> +<script src="{{ url_for('static', filename='scripts/function.js') }}"></script> <script> console.info('Room ID: {{ room_id }}'); @@ -38,8 +38,8 @@ .important { color: #336699; } </style> <link rel="shortcut icon" type="image/x-icon" href="/public/favicon.ico"> -<link rel="stylesheet" media="all" href="/static/style/application.css"> -<link rel="stylesheet" media="all" href="/static/style/app2.css"> +<link rel="stylesheet" media="all" href="{{ url_for('static', filename='style/application.css') }}"> +<link rel="stylesheet" media="all" href="{{ url_for('static', filename='style/app2.css') }}"> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> @@ -79,7 +79,7 @@ <div class="container content" role="main" style="width: 625px"> <div style="position:relative;"> - <img alt="logo" height="auto" width="100%" style="margin-bottom: 20px" src="/static/img/cheaha-logo-a605de0aecd3006b82a5ee30a6d0cb8cd9bf8b7e836296cc293eac746a4c2b11.png"> + <img alt="logo" height="auto" width="100%" style="margin-bottom: 20px" src="{{ url_for('static', filename='img/cheaha-logo-a605de0aecd3006b82a5ee30a6d0cb8cd9bf8b7e836296cc293eac746a4c2b11.png') }}"> <a href="https://tinyurl.com/cheahaAL" target="_blank"> <div style="float:left;position:absolute;display:block;left:310px;top:-6px;padding:10px 20px;"> </div> </a> @@ -115,7 +115,7 @@ <div class="row"> <div class="col-md-6 col-sm-6"> <a href="https://osc.github.io/Open-OnDemand/"> - <img class="footer-logo" alt="Powered by Open OnDemand" height="40" style="margin-bottom: 20px" src="/static/img/OpenOnDemand_powered_by_RGB-cb3aad5ff5350c7994f250fb334ddcc72e343233ce99eb71fda93beddd76a847.svg"> + <img class="footer-logo" alt="Powered by Open OnDemand" height="40" style="margin-bottom: 20px" src="{{ url_for('static', filename='img/OpenOnDemand_powered_by_RGB-cb3aad5ff5350c7994f250fb334ddcc72e343233ce99eb71fda93beddd76a847.svg') }}"> </a> </div> </div>