diff options
Diffstat (limited to 'src/main/resources/templates/portal.html')
-rw-r--r-- | src/main/resources/templates/portal.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/resources/templates/portal.html b/src/main/resources/templates/portal.html index a9319a4..524f878 100644 --- a/src/main/resources/templates/portal.html +++ b/src/main/resources/templates/portal.html @@ -18,6 +18,11 @@ th:attr="value=${osoption}" th:text="${osoption}"></option> </select> + <select class="form-control" th:object="${expiry}" name="expiry"> + <option value="">Select expiry ...</option> + <option th:value="5" th:attr="value=5" th:text="5"></option> + <option th:value="10" th:attr="value=10" th:text="10"></option> + </select> <button class="btn btn-primary" th:id="request_submission" th:type="submit">Generate</button> </form> <div th:if="${attribute01 != null}" th:text="${attribute01}"></div> |