mirror of
https://github.com/alvierahman90/uploadr.git
synced 2025-05-01 19:44:47 +00:00
18 lines
403 B
HTML
18 lines
403 B
HTML
<!doctype html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="/css/style.css">
|
|
</head>
|
|
<body>
|
|
<h1>Upload success!</h1>
|
|
<div class="indent">
|
|
<p>File located at <a id="file_link" href=""><a>
|
|
<script>
|
|
|
|
file = document.getElementById('file_link');
|
|
file.setAttribute('href','/download/{{ filename }}');
|
|
file.innerHTML = '/download/{{ filename }}';
|
|
|
|
</script>
|
|
</div>
|
|
</body>
|