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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>添加轮播图</title>
</head>
<body>
<form action="/banner/newadd" method="post">
<table>
<tr>
<td>轮播编号:</td>
<td width="200"><input type="text" name="bid" placeholder="请输入轮播编号"/></td>
</tr>
<tr>
<td>轮播标题:</td>
<td width="200"><input type="text" name="bname" placeholder="请输入轮播标题"/></td>
</tr>
<tr>
<td>是否启用:</td>
<td width="200">
<select name="isHot">
<option value="1">是</option>
<option value="0">否</option>
</select>
</td>
</tr>
<tr>
<td>图片路径:</td>
<td width="200"><input type="text" name="bimg" placeholder="请输入图片路径"/></td>
</tr>
<tr>
<td>创建日期:</td>
<td width="200"><input type="text" name="createTime" placeholder="格式: 2025-05-18"/></td>
</tr>
<tr>
<td colspan="2">
<input type="reset" value="重置"/>
<input type="submit" value="添加"/>
</td>
</tr>
</table>
</form>
</body>
</html>