Created
October 2, 2015 05:07
-
-
Save IndianGuru/7b781fa88b92ff7a0fbe to your computer and use it in GitHub Desktop.
blobstrex2.go
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
| 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