up
This commit is contained in:
parent
6530d17d0b
commit
6e93ffd5b5
@ -1,10 +1,17 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Document</title>
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
</head>
|
<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>
|
<body>
|
||||||
|
|
||||||
<form action="upload.php" method="post" enctype="multipart/form-data">
|
<form action="upload.php" method="post" enctype="multipart/form-data">
|
||||||
@ -12,6 +19,13 @@
|
|||||||
<input type="file" name="fileToUpload" id="fileToUpload">
|
<input type="file" name="fileToUpload" id="fileToUpload">
|
||||||
<input type="submit" value="Upload Image" name="submit">
|
<input type="submit" value="Upload Image" name="submit">
|
||||||
</form>
|
</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>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue
Block a user