CSV_Data_Cleansing / index.html
OatNapat's picture
Upload index.html
ed4a9fa
raw
history blame contribute delete
730 Bytes
<!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>