appUserRole.jsp 1005 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <%--
  2. Created by IntelliJ IDEA.
  3. User: mati
  4. Date: 19/04/2023
  5. Time: 20:24
  6. To change this template use File | Settings | File Templates.
  7. --%>
  8. <%@ page contentType="text/html;charset=UTF-8" language="java" %>
  9. <%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
  10. <%@taglib uri="http://www.springframework.org/tags" prefix="spring"%>
  11. <html>
  12. <head>
  13. <title>AppUserRole</title>
  14. </head>
  15. <body>
  16. <form:form method="post" action="addAppUserRole" modelAttribute="appUserRole">
  17. <table>
  18. <tr>
  19. <td><form:hidden path="id"/>
  20. </tr>
  21. <tr>
  22. <td><form:label path="role"><spring:message code="label.role"/></form:label></td>
  23. <td><form:input path="role" /></td>
  24. <td><form:errors path="role"/></td>
  25. </tr>
  26. <tr>
  27. <td colspan="2">
  28. <input type="submit" value="<spring:message code="label.addAppUserRole"/>"/>
  29. </td>
  30. </tr>
  31. </table>
  32. </form:form>
  33. </body>
  34. </html>