groupAdd.jsp 1.2 KB

1234567891011121314151617181920212223242526
  1. <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
  2. <%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
  3. <%@ taglib prefix="s" uri="http://www.connsec.com/tags" %>
  4. <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
  5. <form id="actionForm" method="post" type="label" autoclose="true" action="<s:Base/>/groups/add">
  6. <table border="0" cellpadding="0" cellspacing="0" class="datatable" >
  7. <tbody>
  8. <tr>
  9. <th><s:Locale code="group.name" />:</th>
  10. <td nowrap>
  11. <span class="intspan"><input type="text" id="name" name="name" class="int required" title="" value="${group.name}"/></span>
  12. <b class="orange">*</b><label for="name"></label>
  13. </td>
  14. </tr>
  15. <tr>
  16. <td nowrap colspan="2" class="center">
  17. <input id="_method" type="hidden" name="_method" value="post"/>
  18. <input id="status" type="hidden" name="status" value="1"/>
  19. <input class="button" id="submitBtn" type="button" value="<s:Locale code="button.text.save" />">
  20. <input class="button" id="closeBtn" type="button" value="<s:Locale code="button.text.cancel" />">
  21. </td>
  22. </tr>
  23. </tbody>
  24. </table>
  25. </form>