31 lines
1.5 KiB
HTML
31 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css" />
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
|
|
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
|
|
crossorigin="anonymous" referrerpolicy="no-referrer">
|
|
<link rel="stylesheet" href="/global/global.css">
|
|
<script src="/global/global.js"></script>
|
|
<title>Slovanská mytológia</title>
|
|
</head>
|
|
<body>
|
|
|
|
<form action="upload.php" method="post" enctype="multipart/form-data">
|
|
Select image to upload:
|
|
<input type="file" name="fileToUpload" id="fileToUpload">
|
|
<input type="submit" value="Upload Image" name="submit">
|
|
</form>
|
|
<!-- The data encoding type, enctype, MUST be specified as below -->
|
|
<form enctype="multipart/form-data" action="__URL__" method="POST" enctype="multipart/form-data">
|
|
<!-- MAX_FILE_SIZE must precede the file input field -->
|
|
<input type="hidden" name="MAX_FILE_SIZE" value="30000" />
|
|
<!-- Name of input element determines name in $_FILES array -->
|
|
Send this file: <input name="userfile" type="file" />
|
|
<input type="submit" value="Send File" />
|
|
</form>
|
|
</body>
|
|
</html> |