mirror of
https://github.com/alvierahman90/uploadr.git
synced 2025-02-27 21:46:32 +00:00
19 lines
477 B
HTML
19 lines
477 B
HTML
|
<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 = "http://{{ ip }}:{{ port }}/upload" method = "POST"
|
||
|
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>
|