You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
698 B
24 lines
698 B
1 year ago
|
<?php include_once 'header.php';?>
|
||
|
|
||
|
<div class="row">
|
||
|
<div class="col-md-12">
|
||
|
<div class="card">
|
||
|
<div class="card-header">
|
||
|
<h3 class="card-title"><i class="fa fa-users-class"></i> <?php echo $JAK_FORM_DATA["title"];?></h3>
|
||
|
</div><!-- /.box-header -->
|
||
|
<div class="card-body">
|
||
|
|
||
|
<div class="list-group">
|
||
|
<!-- chat output -->
|
||
|
<?php echo $chatmsg;?>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="card-footer">
|
||
|
<a href="<?php echo JAK_rewrite::jakParseurl('groupchat', 'edit', $datagc["groupchatid"]);?>" class="btn btn-default"><?php echo $jkl["g103"];?></a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<?php include_once 'footer.php';?>
|