17 lines
445 B
HTML
17 lines
445 B
HTML
<!doctype html>
|
|
<head>
|
|
<title>Upload new File</title>
|
|
<style>
|
|
h1 {text-align: center; color: blanchedalmond;}
|
|
p {text-align: center; color: blanchedalmond;}
|
|
div {text-align: center;}
|
|
</style>
|
|
</head>
|
|
<body style="background-color:rgb(24, 24, 24);">
|
|
<h1>File Upload</h1>
|
|
<form method=post enctype=multipart/form-data>
|
|
<p><input type=file name=file> <input type=submit value=Upload></p>
|
|
</form>
|
|
</body>
|
|
</html>
|