groupAdd.jsp 645 B

123456789101112131415161718192021
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <form id="addGroupForm" method="post">
  3. <table class="mytable" style="width: 100%;">
  4. <tr>
  5. <th width="40%">用户组名称</th>
  6. <td width="60%"><input type="text" id="name_add" name="group.name"></td>
  7. </tr>
  8. <tr>
  9. <th>描述</th>
  10. <td><input type="text" id="description_add" name="group.description"></td>
  11. </tr>
  12. <tr>
  13. <th>是否超级管理员组</th>
  14. <td>
  15. <input type="radio" name="group.isChSupper" value="1">是
  16. <input type="radio" name="group.isChSupper" value="2" checked="checked">否
  17. </td>
  18. </tr>
  19. </table>
  20. </form>