diff options
Diffstat (limited to 'ecomp-portal-widget-ms/src/main/resources/templates')
-rw-r--r-- | ecomp-portal-widget-ms/src/main/resources/templates/Upload.html | 17 | ||||
-rw-r--r-- | ecomp-portal-widget-ms/src/main/resources/templates/widgetsPage.html | 15 |
2 files changed, 32 insertions, 0 deletions
diff --git a/ecomp-portal-widget-ms/src/main/resources/templates/Upload.html b/ecomp-portal-widget-ms/src/main/resources/templates/Upload.html new file mode 100644 index 00000000..a5e7c632 --- /dev/null +++ b/ecomp-portal-widget-ms/src/main/resources/templates/Upload.html @@ -0,0 +1,17 @@ +<html> +<body> + <div align="center"> + <form method="post" action="doUpload/widget-resources" enctype="multipart/form-data"> + <table border="0"> + <tr> + <td>Pick file:</td> + <td><input type="file" name="fileUpload" size="50" /></td> + </tr> + <tr> + <td colspan="2" align="center"><input type="submit" value="Upload" /></td> + </tr> + </table> + </form> + </div> +</body> +</html>
\ No newline at end of file diff --git a/ecomp-portal-widget-ms/src/main/resources/templates/widgetsPage.html b/ecomp-portal-widget-ms/src/main/resources/templates/widgetsPage.html new file mode 100644 index 00000000..440f64ca --- /dev/null +++ b/ecomp-portal-widget-ms/src/main/resources/templates/widgetsPage.html @@ -0,0 +1,15 @@ +<html xmlns:th="http://www.thymeleaf.org"> +<body> + + <p> Uploaded Widgets: </p> + + <div> + <ul> + <li th:each="file : ${files}"> + <a th:href="${file}" th:text="${file}" /> + </li> + </ul> + </div> + +</body> +</html> |