diff options
author | Marvin Borner | 2019-04-02 22:25:14 +0200 |
---|---|---|
committer | Marvin Borner | 2019-04-02 22:25:14 +0200 |
commit | 644fcfd8f97c90180485e686d0b593efb986541e (patch) | |
tree | d3c998686e7a595487ab2619652033c71e2711e7 /src/main/resources | |
parent | 4aeb6a0ec4c2e51f9d618639f2b0edf6e63da73f (diff) |
Tried implementing rocker templating engine
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/test.rocker.html | 2 | ||||
-rw-r--r-- | src/main/resources/upload.html | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/main/resources/test.rocker.html b/src/main/resources/test.rocker.html new file mode 100644 index 0000000..8deedcd --- /dev/null +++ b/src/main/resources/test.rocker.html @@ -0,0 +1,2 @@ +@args (String message) +<h1>@message</h1> diff --git a/src/main/resources/upload.html b/src/main/resources/upload.html index 550f841..16c8a94 100644 --- a/src/main/resources/upload.html +++ b/src/main/resources/upload.html @@ -8,7 +8,7 @@ <title>Upload Testing</title> </head> <body> -<form action="/upload?dir=test" enctype="multipart/form-data" method="post"> +<form action="/api/upload?dir=test" enctype="multipart/form-data" method="post"> <input multiple name="files" type="file"> <button>Submit</button> </form> |