Skip to content

Instantly share code, notes, and snippets.

@kkrishnan90
Created October 23, 2021 05:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kkrishnan90/897ad7f8ccd1696f61e783708fc2f5ce to your computer and use it in GitHub Desktop.
Save kkrishnan90/897ad7f8ccd1696f61e783708fc2f5ce to your computer and use it in GitHub Desktop.
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