-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathchat.php
More file actions
45 lines (35 loc) · 869 Bytes
/
chat.php
File metadata and controls
45 lines (35 loc) · 869 Bytes
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
<?php include 'header.php' ?>
<div class="col-lg-12">
<?php
if(isset($_GET['chat']))
{
echo '<h1 class="text-center" style="color:#8a2be2"><strong>Chat With Us</strong></h1>';
}
?>
<br><br>
</div>
<div class="col-lg-6 ">
<div class="col-lg-6 col-lg-offset-1">
<a href="?compose=1" class="btn btn-block btn-lg btn-primary x" >Compose</a>
<br><br>
</div>
<div class="col-lg-6 col-lg-offset-1">
<a href="?inbox=1" class="btn btn-block btn-lg btn-success x" >Inbox</a>
<br><br>
</div>
<div class="col-lg-6 col-lg-offset-1">
<a href="?sent=1" class="btn btn-block btn-lg btn-warning x" >Sent</a>
<br>
</div>
</div>
<div class="col-lg-4 col-lg-offset-1">
<?php
if(isset($_GET['chat']))
{
echo '<img src="images/chatimg.jpg" class="img-responsive img-rounded " style=
"height:400px;">';
}
?>
</div>
</div>
</div>