-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchat.php
More file actions
executable file
·46 lines (43 loc) · 1.81 KB
/
chat.php
File metadata and controls
executable file
·46 lines (43 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
use yii\helpers\Html;
$this->title = 'Yii2::NodeJS';
$this->registerJs($this->render('notif.js'), \yii\web\View::POS_READY);
?>
<div class="site-index">
<div class="body-content">
<div class="well col-lg-8 col-lg-offset-2">
<div class="row">
<?= Html::beginForm(['/'],'POST', ['id' => 'chat-form']) ?>
<div class="row">
<div class="col-xs-3">
<div class="form-group">
<?= Html::textInput('nick_name', null, [
'class' => 'form-control',
'id' => 'nick_name',
'placeholder' => 'Nick Name'
]); ?>
</div>
</div>
<div class="col-xs-7">
<div class="form-group">
<?= Html::textInput('message', null, [
'id' => 'message-field',
'class' => 'form-control',
'placeholder' => 'Message'
]) ?>
</div>
</div>
<div class="col-xs-2">
<div class="form-group">
<?= Html::submitButton('Send', [
'class' => 'btn btn-block btn-success'
]) ?>
</div>
</div>
</div>
<?= Html::endForm() ?>
<div id="notifikasi" ></div>
</div>
</div>
</div>
</div>