tytd-web/upload.html

24 lines
835 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="manifest" href="manifest.webmanifest" crossorigin="use-credentials">
<title>Upload Files</title>
</head>
<body>
<h1>Upload random files</h1>
<form id = "uploadbanner" method = "post" action = "api/upload/">
<input id = "fileupload" type = "file" />
<input type = "submit" value = "submit" id = "submit" />
</form>
<h1>Upload downloadlist</h1>
<form id = "uploadbanner2" method = "post" action = "api/AddItems">
<input id = "fileupload" type = "file" />
<input type = "submit" value = "submit" id = "submit" />
</form>
</body>
</html>