41 lines
1.3 KiB
PHP
41 lines
1.3 KiB
PHP
<!-- 添加公告-->
|
|
<?php
|
|
|
|
?>
|
|
|
|
<section class="content-header">
|
|
</section>
|
|
|
|
<!-- Main content -->
|
|
<section class="content">
|
|
|
|
<div class="box box-info">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">添加公告</h3>
|
|
</div>
|
|
<!-- /.box-header -->
|
|
<!-- form start -->
|
|
<form action="<?= \yii\helpers\Url::to(['other/notice-add']) ?>" class="form-horizontal" method="post">
|
|
<div class="box-body">
|
|
<div class="form-group">
|
|
<label for="title" class="col-sm-2 control-label">标题</label>
|
|
<div class="col-sm-10">
|
|
<input type="text" class="form-control" id="title" name="title">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="message" class="col-sm-2 control-label">内容</label>
|
|
<div class="col-sm-10">
|
|
<input type="text" class="form-control" id="message" name="message">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- /.box-body -->
|
|
<div class="box-footer">
|
|
<button type="submit" class="btn btn-info pull-right">提交</button>
|
|
</div>
|
|
<!-- /.box-footer -->
|
|
</form>
|
|
</div>
|
|
</section>
|
|
<!-- /.content -->
|