News:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>File Upload</title> </head> <body>

Upload a File

<form action="YOUR_SERVER_URL_HERE" method="post" enctype="multipart/form-data"> <input type="file" id="file" name="file" required>

<input type="submit" value="Upload File"> </form> </body> </html>