uploadr/templates/upload.html

19 lines
451 B
HTML
Raw Normal View History

2017-10-24 20:34:55 +00:00
<html>
<head>
<link rel="stylesheet" type="text/css" href="/css/style.css">
<link rel="stylesheet" type="text/css" href="/css/bootstrap.css">
</head>
<body>
<form action = "/upload" method = "POST"
2017-10-24 20:34:55 +00:00
enctype = "multipart/form-data">
<div class="fileUpload btn">
<span>Upload</span>
<input class="upload btn" type = "file" name = "file" />
</div>
<input class="btn" type = "submit"/>
</form>
</body>
</html>