forked from simonwongwong/Facebook-Messenger-JSON-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchat_display.html
33 lines (24 loc) · 1009 Bytes
/
chat_display.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
<html>
<head>
<link rel="icon" type="image/png" href="./img/favicon.png"/>
<title>Facebook Messenger JSON Viewer</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap" rel="stylesheet">
<link href="chat_display.css" rel="stylesheet">
</head>
<body>
<div id="head">
<h1> Chat Display</h1>
</div>
<div id="file-select">
<input type="file" id="fileupload" accept=".json">
</div>
<div id="participants-radio"></div>
<div id="submit-button"></div>
<div id="chat-title"></div>
<div id="chat-area">
</div>
<script src="https://unpkg.com/react@16/umd/react.production.min.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js" crossorigin></script>
<script src="chat_viewer.js" type="text/javascript"></script>
</body>
</html>