diff options
author | Georg Pfuetzenreuter | 2022-05-08 15:03:42 +0200 |
---|---|---|
committer | Georg Pfuetzenreuter | 2022-05-08 15:03:42 +0200 |
commit | a014a0126fa72c9b1630c718d05f1652dfc13fb8 (patch) | |
tree | 26982043e094b21c7a3b66e5be7c218b21e8adb0 /src/main/resources/templates/portal.html | |
parent | 5bb047c96004d2a017423b093957d2b478c4ce56 (diff) | |
download | pubsh-web-a014a0126fa72c9b1630c718d05f1652dfc13fb8.tar.gz pubsh-web-a014a0126fa72c9b1630c718d05f1652dfc13fb8.tar.bz2 pubsh-web-a014a0126fa72c9b1630c718d05f1652dfc13fb8.zip |
Shell creation logic
Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
Diffstat (limited to 'src/main/resources/templates/portal.html')
-rw-r--r-- | src/main/resources/templates/portal.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/resources/templates/portal.html b/src/main/resources/templates/portal.html index 0088e82..568e4da 100644 --- a/src/main/resources/templates/portal.html +++ b/src/main/resources/templates/portal.html @@ -9,7 +9,7 @@ Hello, <span th:text="${username}"></span>. </h2> <h3>Generate new throw-away shell:</h3> - <form th:object="${osChoice}" th:id="request_pseudoform" action="#" th:action="@{'/frontend/container/add'}" th:method="post" th:os="${osChoice}" th:onsubmit="return confirm('You are about to generate a shell with the OS ' + this.getAttribute('osoption') + ' - please be patient after you confirm, as the generation may take a short while.');"> + <form th:object="${osChoice}" th:id="request_pseudoform" action="#" th:action="@{'/frontend/shell/add'}" th:method="post" th:os="${osChoice}" th:onsubmit="return confirm('You are about to generate a shell with the OS ' + this.getAttribute('osoption') + ' - please be patient after you confirm, as the generation may take a short while.');"> <select class="form-control" th:object="${osChoice}" name="osChoice"> <option value="">Select operating system ...</option> <option |