-
Notifications
You must be signed in to change notification settings - Fork 0
/
incomingmessage.html
50 lines (36 loc) · 1.13 KB
/
incomingmessage.html
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
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" type="text/css" href="style/incomingmessage.css" />
</head>
<body>
<div id="content-div">
<header>
<img id="thread_pic" />
<div id="sender_info">
<h1 id="thread_name">Thread</h1>
<h2 id="sender_name">Name</h2>
</div>
<div id="window_controls">
<button id="open_button"></button>
<button id="close_button"></button>
</div>
</header>
<main id="message-main">
<div id="messages_container">
<!--<div class="user-message-container">
<p class="user-message-body"></p>
</div>-->
</div>
<button id="reply_button"></button>
<!--<div id="reply-div">
<textarea id="reply_message" res></textarea>
<button id="reply_send"></button>
<br class="clear-br" />
</div>-->
</main>
</div>
<script src="./incomingmessage.js"></script>
</body>
</html>