Spaces:
Runtime error
Runtime error
| <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> | |