Initial commit

This commit is contained in:
Ben Ramey
2015-11-12 19:58:50 -06:00
commit 4eb7f46e4c
86 changed files with 4341 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<h2>Administrate FTI: News</h2>
<p>
Please decide if you really want to delete this item below.
</p>
<div class='admin_summary_box'>
<h3>Delete News Item</h3>
<p>
Do you really want to delete the news item
"<?php echo $this->data['newsitem']->title ?>"?
</p>
<form action="news.php" method="post" id='news_form' accept-charset="utf-8">
<input type="hidden" name="do" value="reallydelete" id="do"/>
<input type="hidden" name="id" value="<?php echo $this->data['newsitem']['id'] ?>" id="id"/>
<p>
<input type="submit" value="Delete news item">
<a href='news.php' title="Don't delete news item">No, don't delete news item</a>
</p>
</form>
</div>