55 lines
854 B
HTML
55 lines
854 B
HTML
{php include pubTemplate("header_admin")}
|
|
{php doAction('tseditor')}
|
|
<!--main-->
|
|
<div class="midder">
|
|
|
|
{php include template("admin/menu");}
|
|
|
|
|
|
<form method="post" action="{SITE_URL}index.php?app=home&ac=admin&mg=info&ts=adddo">
|
|
<table class="table table-hover">
|
|
|
|
|
|
<tbody>
|
|
|
|
|
|
|
|
<tr>
|
|
<td>标题:</td><td><input style="width:300px;padding:5px;" name="title" /></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>内容:</td><td>
|
|
|
|
|
|
<div style="width: 700px">
|
|
<textarea id="tseditor" name="content"></textarea>
|
|
</div>
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td>排序ID:</td><td><input name="orderid" /></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td></td><td>
|
|
|
|
|
|
<input class="btn btn-primary" type="submit" value="提交" />
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
|
|
|
|
</table>
|
|
</form>
|
|
|
|
|
|
</div>
|
|
{php include pubTemplate("footer_admin")} |