18 lines
585 B
HTML
18 lines
585 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Webserv test Something</title>
|
|
</head>
|
|
<body>
|
|
<h1 style="text-align:center">Webserv in Test</h1>
|
|
<hr>
|
|
<p style="text-align:center">Time to submit something:</p>
|
|
<!-- <form action="./srcs/cgi-bin/upload_file.php" method="post" enctype="multipart/form-data"> -->
|
|
<form action="/cgi-bin/upload_file.php" method="post" enctype="multipart/form-data">
|
|
<!-- <input type="hidden" name="upload_dir" value="./www/uploaded/"> -->
|
|
<input type="file" id="fileToUpload" name="myFile">
|
|
<input type="submit" value="Upload File">
|
|
</form>
|
|
</body>
|
|
</html>
|