Shilpaj commited on
Commit
61825ff
·
verified ·
1 Parent(s): 7672fa1

Fix: UI issue

Browse files
Files changed (1) hide show
  1. templates/index.html +2 -2
templates/index.html CHANGED
@@ -7,7 +7,7 @@
7
  <link rel="preconnect" href="https://fonts.googleapis.com">
8
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
9
  <link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&display=swap" rel="stylesheet">
10
- <link rel="stylesheet" href="{{ url_for('static', path='/css/style.css') }}">
11
  <link rel="icon" type="image/x-icon" href="{{ url_for('static', path='/favicon.ico') }}">
12
  </head>
13
  <body style="background: #000428;">
@@ -65,6 +65,6 @@
65
  <button id="reset-btn" class="btn hidden">Reset</button>
66
  </div>
67
 
68
- <script src="{{ url_for('static', path='/js/script.js') }}"></script>
69
  </body>
70
  </html>
 
7
  <link rel="preconnect" href="https://fonts.googleapis.com">
8
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
9
  <link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&display=swap" rel="stylesheet">
10
+ <link rel="stylesheet" href="/static/css/style.css">
11
  <link rel="icon" type="image/x-icon" href="{{ url_for('static', path='/favicon.ico') }}">
12
  </head>
13
  <body style="background: #000428;">
 
65
  <button id="reset-btn" class="btn hidden">Reset</button>
66
  </div>
67
 
68
+ <script src="/static/js/script.js"></script>
69
  </body>
70
  </html>