Spaces:
Sleeping
Sleeping
File size: 345 Bytes
a9fa911 d0c7e45 a9fa911 f7b2141 a9fa911 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<!DOCTYPE html>
<html>
<head>
<title>JSON Data</title>
</head>
<body>
{% if json_data %}
<h1>JSON Data:</h1>
<pre>{{ json_data }}</pre>
{% else %}
<h1>Upload a TXT File</h1>
<form method="POST" enctype="multipart/form-data">
<input type="file" name="txt_file">
<input type="submit" value="Submit">
</form>
{% endif %}
</body>
</html> |