heboya8 commited on
Commit
1987fd7
·
verified ·
1 Parent(s): 1233697

Update templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +2 -2
templates/index.html CHANGED
@@ -2,7 +2,7 @@
2
  <html>
3
  <head>
4
  <title>Webcam Image Capture</title>
5
- <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
6
  </head>
7
  <body>
8
  <h1>Webcam Image Capture</h1>
@@ -20,6 +20,6 @@
20
  <input type="file" name="file" accept="image/*" id="file-input">
21
  <input type="submit" value="Upload Image">
22
  </form>
23
- <script src="{{ url_for('static', filename='script.js') }}"></script>
24
  </body>
25
  </html>
 
2
  <html>
3
  <head>
4
  <title>Webcam Image Capture</title>
5
+ <link rel="stylesheet" href="/static/style.css">
6
  </head>
7
  <body>
8
  <h1>Webcam Image Capture</h1>
 
20
  <input type="file" name="file" accept="image/*" id="file-input">
21
  <input type="submit" value="Upload Image">
22
  </form>
23
+ <script src="/static/script.js"></script>
24
  </body>
25
  </html>