123456789101112131415161718192021 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <form id="addGroupForm" method="post">
- <table class="mytable" style="width: 100%;">
- <tr>
- <th width="40%">用户组名称</th>
- <td width="60%"><input type="text" id="name_add" name="group.name"></td>
- </tr>
- <tr>
- <th>描述</th>
- <td><input type="text" id="description_add" name="group.description"></td>
- </tr>
- <tr>
- <th>是否超级管理员组</th>
- <td>
- <input type="radio" name="group.isChSupper" value="1">是
- <input type="radio" name="group.isChSupper" value="2" checked="checked">否
- </td>
- </tr>
- </table>
- </form>
|