diff options
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 |