You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.0 KiB
39 lines
1.0 KiB
<%@ page language="java" contentType="text/html; charset=utf-8"
|
|
pageEncoding="utf-8"%>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>类目编辑</title>
|
|
<meta charset="utf-8"/>
|
|
<link rel="stylesheet" href="css/bootstrap.css"/>
|
|
</head>
|
|
<body>
|
|
<div class="container-fluid">
|
|
|
|
|
|
<jsp:include page="/admin/header.jsp"></jsp:include>
|
|
|
|
<br><br>
|
|
|
|
<form class="form-horizontal" action="/admin/type_edit" method="post">
|
|
<input type="hidden" name="id" value="${param.id }">
|
|
<div class="form-group">
|
|
<label for="input_name" class="col-sm-1 control-label">类目名称</label>
|
|
<div class="col-sm-6">
|
|
<input type="text" class="form-control" id="input_name" name="name" value="${param.name }" required="required">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="col-sm-offset-1 col-sm-10">
|
|
<button type="submit" class="btn btn-success">提交修改</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
<span style="color:red;"></span>
|
|
|
|
</div>
|
|
</body>
|
|
</html> |