Spaces:
Runtime error
Runtime error
File size: 730 Bytes
ed4a9fa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | <!DOCTYPE html>
<html>
<head>
<title>Hugging Face CSV Data Cleaning Tool</title>
</head>
<body>
<h1>Hugging Face CSV Data Cleaning Tool</h1>
<form method="POST" enctype="multipart/form-data" action="/upload">
<input type="file" name="file">
<input type="submit" value="Upload and Clean">
</form>
<div>
{% with messages = get_flashed_messages() %}
{% if messages %}
<ul class="flashes">
{% for message in messages %}
<li>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
{% endwith %}
</div>
<div>
{{ data | safe }}
</div>
</body>
</html>
|