DmitrMakeev commited on
Commit
2f70479
·
verified ·
1 Parent(s): c5eeca1

Update online.html

Browse files
Files changed (1) hide show
  1. online.html +12 -11
online.html CHANGED
@@ -1,14 +1,15 @@
1
  <!DOCTYPE html>
2
  <html>
3
- <head>
4
- <meta charset="utf-8">
5
- <title>Загрузка файла</title>
6
- </head>
7
- <body>
8
- <form enctype="multipart/form-data" action="https://dmitrmakeev-flask-inference-api.hf.space/upload" method="post">
9
- <p>Загрузите ваши фотографии на сервер</p>
10
- <p><input type="file" name="photo" multiple accept="image/*,image/jpeg">
11
- <input type="submit" value="Отправить"></p>
12
- </form>
13
- </body>
14
  </html>
 
 
1
  <!DOCTYPE html>
2
  <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Загрузка файла</title>
6
+ </head>
7
+ <body>
8
+ <form enctype="multipart/form-data" method="post" action="https://dmitrmakeev-flask-inference-api.hf.space/upload">
9
+ <p>Загрузите вашу фотографию на сервер</p>
10
+ <input type="file" name="photo" accept="image/*">
11
+ <input type="submit" value="Отправить">
12
+ </form>
13
+ </body>
14
  </html>
15
+