Skip to content

Instantly share code, notes, and snippets.

@IndianGuru
Created October 2, 2015 05:07
Show Gist options
  • Select an option

  • Save IndianGuru/7b781fa88b92ff7a0fbe to your computer and use it in GitHub Desktop.

Select an option

Save IndianGuru/7b781fa88b92ff7a0fbe to your computer and use it in GitHub Desktop.
blobstrex2.go
var rootTemplate = template.Must(template.New("root").Parse(rootTemplateHTML))
const rootTemplateHTML = `
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/upper.css">
<title>Upload your Photo</title>
</head>
<body>
<form action="{{.}}" method="POST" enctype="multipart/form-data">
Upload File: <input type="file" name="file"><br />
<input type="submit" name="submit" value="Submit">
</form></body></html>
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment