Files
SRCMS/Application/Admin/View/Hall/add.html

21 lines
959 B
HTML
Raw Normal View History

2015-10-06 20:25:13 +08:00
<include file="Public/header" title="添加贡献者" />
<div id="page-wrapper">
<form method="post" action="{:U('hall/add')}">
<div class="form-group">
<label for="aa">贡献者名称</label>
<input type="text" name="name" class="form-control" id="aa" placeholder="输入贡献者名称">
</div>
<div class="form-group">
<label for="bb">图片地址(图片大小建议设置为 80*80)</label>
<input type="text" name="url" class="form-control" id="bb" placeholder="输入图片地址">
</div>
<div class="form-group">
<label for="bb">贡献者描述</label>
<input type="text" name="des" class="form-control" id="bb" placeholder="输入对贡献者的描述">
2015-10-06 20:25:13 +08:00
</div>
<div class="form-group">
<button type="submit" class="btn btn-default">提交</button>
</div>
</form>
</div>
<include file="Public/footer" />