-
Notifications
You must be signed in to change notification settings - Fork 0
/
display.html
34 lines (32 loc) · 1.07 KB
/
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
33
34
<!--Created by James Pearson 26/05/18, last updated 08/06/18-->
<html>
<head>
<title>FBM Chat Analysis</title>
<meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="https://frogletapps.github.io/Assets/favicon.ico" type="image/ico">
<link rel="stylesheet" type="text/css" href="https://frogletapps.github.io/Assets/FrogletApps.css">
<link rel="stylesheet" type="text/css" href="style.css">
<!--Import jQuery Library-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<div id="topBar">
<h1>Facebook Messenger Chat Analysis</h1>
</div>
<p>Select the Facebook Messenger JSON file you want to view</p>
<div id="filePicker">
<input type="file" id="fileInput" accept=".json">
</div>
<br>
<div id="name"></div>
<div id="instructions"></div>
<table id="outputTable"></table>
<br>
<div id="firstMessage"></div>
<div id="firstMessageDate"></div>
<br>
<div id="error"></div>
<br>
<script src="reader.js"></script>
</body>
</html>