-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsinglechat.php
More file actions
28 lines (23 loc) · 819 Bytes
/
singlechat.php
File metadata and controls
28 lines (23 loc) · 819 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
<?php
include './includes/header.inc.php';
?>
<body class="bod">
<div class="head">
<button id="back-button" onclick="location.href='convolist.php'">Back</button>
<h2 id="chatName"></h2>
</div>
<div id="chat-box"></div>
<div id="type-area">
<form id="messageForm" action="#">
<input type="text" name="senderId" value="<?php echo $_SESSION['id']; ?>" style="display: none;">
<input type="text" name="receiverId" value="<?php echo $_GET['user']; ?>" style="display: none;">
<input id="messageInput" type="text" name="message" placeholder="Type message here">
<button id="subBtn" type="submit" name="submit" >Send</button>
</form>
</div>
<?php
include_once './includes/footer.inc.php'
?>
<script src="./src/singlechat.js"></script>
</body>
</html>