Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Duplicate Removal</title> | |
| <link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}"> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <h1>Duplicate Removal</h1> | |
| <form id="uploadForm" enctype="multipart/form-data" action="/" method="POST"> | |
| <input type="file" name="file" id="csvFile" accept=".csv"> | |
| <button type="submit" id="submitBtn">Submit</button> | |
| </form> | |
| <div id="processingMsg" class="hidden"> | |
| <p>Processing...</p> | |
| </div> | |
| {% if output_file %} | |
| <div class="btn"> | |
| <a href="{{ url_for('download_file', filename=output_file) }}" download> | |
| <button>Download Processed CSV</button> | |
| </a> | |
| </div> | |
| {% endif %} | |
| </div> | |
| <script src="{{ url_for('static', filename='script.js') }}"></script> | |
| </body> | |
| </html> | |