15 lines
541 B
PHP
15 lines
541 B
PHP
|
<?php
|
||
|
|
||
|
$template = <<<END
|
||
|
<center>
|
||
|
<div style="border: solid 1px #aaaaaa; background-color: #eeeeee; padding: 5px; width: 400px; text-align: left;">
|
||
|
<b>Guild Statement for {{name}}:</b><br /><br />
|
||
|
{{statement}}
|
||
|
</div></center><br /><br />
|
||
|
Applying for this Guild costs {{joincost}} gold. This is non-refundable. Are you sure you want to apply to this Guild?<br /><br />
|
||
|
<form action="index.php?do=guildapp&id={{id}}" method="post">
|
||
|
<input type="submit" name="yes" value="Yes" /> <input type="submit" name="no" value="No" />
|
||
|
</form>
|
||
|
END;
|
||
|
|
||
|
?>
|