From 5473d82b213365342ef9d3a303d1b37f1571a66d Mon Sep 17 00:00:00 2001 From: Nam Tran Date: Sun, 4 Oct 2020 15:33:21 -0500 Subject: [PATCH] clean up views --- views/index.pug | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/views/index.pug b/views/index.pug index 4a0d816..5e687b9 100644 --- a/views/index.pug +++ b/views/index.pug @@ -1,8 +1,8 @@ -extends layout - -block content - h1= title - p Welcome to #{title} - form(action='/upload' enctype='multipart/form-data' method='POST') - input(type='file' name='photo') - input(type='submit' value='Upload a file') +doctype html +html(lang='en') + head + title Simple multipart/form-data example + body + form(action='/upload' enctype='multipart/form-data' method='POST') + input(type='file' name='photo') + input(type='submit' value='Upload a file')