DmitrMakeev commited on
Commit
a9fa911
·
1 Parent(s): 81b255c

Create templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +13 -0
templates/index.html ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Загрузка файла TXT</title>
5
+ </head>
6
+ <body>
7
+ <h1>Загрузка файла TXT</h1>
8
+ <form method="POST" enctype="multipart/form-data" action="/">
9
+ <input type="file" name="txt_file" accept=".txt" required>
10
+ <button type="submit">Обработать файл</button>
11
+ </form>
12
+ </body>
13
+ </html>