File size: 478 Bytes
a9fa911
 
adba3f8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a9fa911
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
  <head>
    <title>Загрузка файла</title>
  </head>
  <body>
    <h1>Загрузка файла</h1>
    <form method="POST" enctype="multipart/form-data">
      <input type="file" name="txt_file" accept=".txt"><br>
      <button type="submit">Загрузить</button>
    </form>
    
    {% if json_content %}
    <h2>Содержимое файла JSON:</h2>
    <pre>{{ json_content | safe }}</pre>
    {% endif %}
  </body>
</html>