Created
October 23, 2021 05:49
-
-
Save kkrishnan90/897ad7f8ccd1696f61e783708fc2f5ce to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
doctype html | |
html(lang="en") | |
head | |
title Static Files | |
meta(charset='utf-8') | |
link(rel="stylesheet", href="/static/main.css") | |
body | |
form(method="POST", action="/upload", enctype="multipart/form-data") | |
input(type="file", name="file") | |
input(type="submit") | |
img(id="output", alt='None to show :(') | |
script. | |
var loadFile = function(event) { | |
var image = document.getElementById('output'); | |
image.src = URL.createObjectURL(event.target.files[0]); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment