Files
thinksaas_lmve/app/location/html/admin/location_add.html
T
2023-06-22 13:33:25 +08:00

23 lines
772 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{php include pubTemplate("header_admin")}
<!--main-->
<div class="midder">
{php include template("admin/menu");}
<form method="POST" action="{SITE_URL}index.php?app=location&ac=admin&mg=location&ts=adddo" enctype="multipart/form-data">
<table class="table table-hover">
<tr><td width="100">名称:</td><td><input style="width:300px;" name="title" value="" /></td></tr>
<tr><td>内容:</td><td><textarea style="width:300px;" name="content"></textarea></td></tr>
<tr><td>图片:</td><td><input type="file" name="photo" /></td></tr>
<tr><td>排序ID</td><td><input name="orderid" value="0" /></td></tr>
<tr><td></td><td>
<input class="btn btn-primary" type="submit" value="添加" />
</td></tr>
</table>
</form>
</div>
{php include pubTemplate("footer_admin")}