Untitled
unknown
plain_text
a year ago
840 B
2
Indexable
<!DOCTYPE html> <html lang="en"> <head> <title>Utility Application</title> </head> <body> <h1>Utility Application</h1> <form action="/process_files" method="post" enctype="multipart/form-data"> <label for="sheet1_file">Choose Excel Sheet 1:</label> <input type="file" name="sheet1_file" required><br> <label for="sheet2_file">Choose Excel Sheet 2:</label> <input type="file" name="sheet2_file" required><br> <label for="column1_name">Enter the name of the first column:</label> <input type="text" name="column1_name" required><br> <label for="column2_name">Enter the name of the second column:</label> <input type="text" name="column2_name" required><br> <button type="submit">Process Files</button> </form> </body> </html>
Editor is loading...
Leave a Comment