[FIX] removed test files
This commit is contained in:
parent
e3317f320c
commit
6b1bceabdf
Binary file not shown.
|
Before Width: | Height: | Size: 1.8 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 308 B |
Binary file not shown.
|
Before Width: | Height: | Size: 8.0 KiB |
@ -1,39 +0,0 @@
|
||||
<div class="row">
|
||||
<div class="col-lg-4">
|
||||
<div class="panel panel-info">
|
||||
<div class="panel-heading"><i class="fa fa-comments-o fa-fw"></i> Shoutbox
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<form method="post" id="form" role="form">
|
||||
<input type="hidden" id="nick" value="{$GLOBAL.userdata.username|escape}">
|
||||
<div class="form-group">
|
||||
<label>Message</label>
|
||||
<input class="form-control" id="message" type="text" MAXLENGTH="255">
|
||||
</div>
|
||||
<input class="btn btn-success" id="send" type="submit" value="Shout it!">
|
||||
</div>
|
||||
</form>
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="panel panel-info">
|
||||
<div class="panel-heading"><i class="fa fa-comments-o fa-fw"></i> Latest Messages
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<div class="content">
|
||||
<div id="loading"><img src="{$PATH}/images/loading.gif" alt="Loading..."></div>
|
||||
<ul>
|
||||
<!--
|
||||
{section name=shoutbox loop=$SHOUTBOX}
|
||||
{$SHOUTBOX[shoutbox].user}
|
||||
{/section}
|
||||
-->
|
||||
<ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript" src="{$PATH}/js/shoutbox.js"></script>
|
||||
</div>
|
||||
</div>
|
||||
@ -1,7 +0,0 @@
|
||||
CREATE TABLE IF NOT EXISTS `shoutbox` (
|
||||
`id` int(5) NOT NULL AUTO_INCREMENT,
|
||||
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`user` varchar(25) NOT NULL DEFAULT 'anonymous',
|
||||
`message` varchar(255) NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
|
||||
Loading…
Reference in New Issue
Block a user