17 lines
663 B
PHP
17 lines
663 B
PHP
|
<?php
|
||
|
|
||
|
$template = <<<END
|
||
|
<h3>Delete a Realm</h3>
|
||
|
<a href="index.php?do=realms&fn=realms">Back to Realms List</a><br /><br />
|
||
|
<form action="index.php?do=realms&fn=realms&action=delete&id={{id}}" method="post">
|
||
|
<table cellspacing="0" cellpadding="5">
|
||
|
<tr><td colspan="2" style="border-top: solid 2px black;"><center>
|
||
|
Are you sure you want to delete {{name}}?
|
||
|
</center></td></tr>
|
||
|
<tr><td colspan="2" style="border-top: solid 2px black;"><center>
|
||
|
<button type="submit" name="diediedie"><img src="icons/tick.png" align="top" /> Yes</button> <button type="submit" name="abort"><img src="icons/cross.png" align="top" /> No</button>
|
||
|
</center></td></tr>
|
||
|
</table>
|
||
|
END;
|
||
|
|
||
|
?>
|