diff options
author | Adam Novak | 2020-04-09 15:41:58 -0700 |
---|---|---|
committer | Adam Novak | 2020-04-09 15:41:58 -0700 |
commit | ec6f3ad6268f576c1302101c7f0761fbf1d3dc55 (patch) | |
tree | f9d8e9ec6e00a2700fadf2f56285bc987d0890a1 /bh20simplewebuploader/templates/error.html | |
parent | 7140367bd832294c1756fe2369e91e7acc305083 (diff) | |
parent | 7d26be925f37b1f98cac23b018dd1a72fa506a3f (diff) | |
download | bh20-seq-resource-ec6f3ad6268f576c1302101c7f0761fbf1d3dc55.tar.gz bh20-seq-resource-ec6f3ad6268f576c1302101c7f0761fbf1d3dc55.tar.lz bh20-seq-resource-ec6f3ad6268f576c1302101c7f0761fbf1d3dc55.zip |
Merge branch 'move-repo' of ../bh20-simple-web-uploader into HEAD
Diffstat (limited to 'bh20simplewebuploader/templates/error.html')
-rw-r--r-- | bh20simplewebuploader/templates/error.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/bh20simplewebuploader/templates/error.html b/bh20simplewebuploader/templates/error.html new file mode 100644 index 0000000..c2ab0a4 --- /dev/null +++ b/bh20simplewebuploader/templates/error.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <title>Upload Failed</title> + </head> + <body> + <h1>Upload Failed</h1> + <hr> + <p> + Your upload has failed. {{error_message}} + </p> + <p> + <a href="/">Click here to try again.</a> + </p> + <hr> + </body> +</html> |