Initial commit
This commit is contained in:
commit
43ad32700c
7085 changed files with 447606 additions and 0 deletions
22
modules/chat/templates/default/chat.tpl
Normal file
22
modules/chat/templates/default/chat.tpl
Normal file
|
@ -0,0 +1,22 @@
|
|||
<div class="twelve columns">
|
||||
<h2>Chat:</h2>
|
||||
<form name="form" id="chatform" action="chat/in.html" method="post">
|
||||
Raum: <select name="room">
|
||||
{foreach from=$options item=option}
|
||||
<option value="{if $option.value==''}{$option.room}{else}{$option.value}{/if}" {$option.selected}>{$option.room}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
<a href="//austriachat.net/chat/online.html" target="_blank">Es {$befinden} {$usercount} User im Chat.</a>
|
||||
<br /><br />
|
||||
<input type="submit" value="Eintreten" /><br />
|
||||
<br /><br />
|
||||
</form>
|
||||
<h1 class="block">Derzeit Online</h1>
|
||||
<div class="online">
|
||||
{foreach from=$user item=i}
|
||||
<strong>Raum:</strong> {$i.room}<br /><hr />
|
||||
{$i.users}<br /><br />
|
||||
{foreachelse}
|
||||
Sorry, niemand online:-(
|
||||
{/foreach}
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue