16 lines
554 B
PHP
16 lines
554 B
PHP
<h2>Administrate FTI: Credit Cards</h2>
|
|
<p>
|
|
Are you sure you want to delete credit card information for
|
|
<?php echo $this->data['card']->card_name ?>?
|
|
</p>
|
|
<p>
|
|
<form action="creditcards.php" method="post" accept-charset="utf-8">
|
|
<input type="hidden" name="id" value="<?php echo $this->data['card']['id'] ?>" id="id"/>
|
|
<input type="hidden" name="do" value="reallydelete" id="do"/>
|
|
<p>
|
|
<input type="submit" value="Yes, delete info"/>
|
|
No, return to <a href='/admin/creditcards.php'>credit card list</a>.
|
|
</p>
|
|
</form>
|
|
</p>
|