You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
433 B
17 lines
433 B
<html>
|
|
<head>
|
|
<title>Upload file</title>
|
|
<link rel="stylesheet" href="/styles/basic.css">
|
|
</head>
|
|
<body>
|
|
<form method="post" action="/cgi-bin/save_file" enctype="multipart/form-data">
|
|
User: <input type="text" size=32 name="user_name">
|
|
<br>
|
|
Pathname: <input type="text" size=32 name="path_name">
|
|
<br>
|
|
Filename: <input type="file" size=32 name="file_name" accept="image/jpg,image/gif">
|
|
<br>
|
|
<input type=submit>
|
|
</form>
|
|
</body>
|
|
</html>
|