clipbucket/upload/admin_area/styles/cb_2014/layout/edit_announcemnent.html

24 lines
613 B
HTML
Raw Normal View History

2014-03-12 09:50:47 +00:00
<h2>Edit Announcement</h2>
<table width="99%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td>
<form id="form1" name="form1" method="post" action="">
Announcement<br />
<label for="textarea"></label>
2014-09-22 14:40:05 +00:00
<textarea name="text" id="page_content" cols="75" rows="6" style="width:100%;">{$an}</textarea>
2014-03-12 09:50:47 +00:00
<br />
<input type="submit" class="btn btn-primary btn-xs" name="update" value="Update" />
</form></td>
</tr>
</table>
<script>
$(document).ready(function() {
$('#page_content').summernote();
});
</script>