| 12345678910111213141516171819202122232425262728293031323334353637 |
- <%--
- Created by IntelliJ IDEA.
- User: mati
- Date: 19/04/2023
- Time: 20:24
- To change this template use File | Settings | File Templates.
- --%>
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
- <%@taglib uri="http://www.springframework.org/tags" prefix="spring"%>
- <html>
- <head>
- <title>AppUserRole</title>
- </head>
- <body>
- <form:form method="post" action="addAppUserRole" modelAttribute="appUserRole">
- <table>
- <tr>
- <td><form:hidden path="id"/>
- </tr>
- <tr>
- <td><form:label path="role"><spring:message code="label.role"/></form:label></td>
- <td><form:input path="role" /></td>
- <td><form:errors path="role"/></td>
- </tr>
- <tr>
- <td colspan="2">
- <input type="submit" value="<spring:message code="label.addAppUserRole"/>"/>
- </td>
- </tr>
- </table>
- </form:form>
- </body>
- </html>
|