forked from halo-battle/game
Version 1.12
This commit is contained in:
parent
2a066a7498
commit
de31cd3e9a
1373 changed files with 156282 additions and 45238 deletions
26
onyx2/tpl/game/amis.tpl
Normal file
26
onyx2/tpl/game/amis.tpl
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{include file='game/header.tpl'}
|
||||
<h2>Amis existants</h2>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Nom du joueur</th>
|
||||
<th>Supprimer</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{foreach from=$destins item=destin}
|
||||
<tr>
|
||||
<td>{$destin.1|escape}</td>
|
||||
<td><a href="?p=amis&d={$destin.0}&a={$destin.2}">Supprimer</a></td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
</table>
|
||||
<h2>Ajouter un ami</h2>
|
||||
<form action="?p=amis" method="post">
|
||||
<fieldset class="options">
|
||||
<label for="nom">Nom du joueur</label><input class="text" type="text" id="nom" name="nom" maxlength="32" /><br />
|
||||
<input class="submit" type="submit" value="Ajouter" />
|
||||
</fieldset>
|
||||
</form>
|
||||
{include file='game/footer.tpl'}
|
||||
Loading…
Add table
Add a link
Reference in a new issue