You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
930 B
HTML
32 lines
930 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Chat a pad - WIP</title>
|
|
<script src="./csv_to_chat.js" defer="defer"></script>
|
|
<link rel="stylesheet" href="./chat.css" />
|
|
</head>
|
|
<body>
|
|
<div class="info">
|
|
You can also upload a CSV file with the following headers:
|
|
<em>text; author; image; tag;</em>
|
|
<form id="myForm">
|
|
<label for="csvFile" class="file-upload">
|
|
<input type="file" id="csvFile" accept=".csv" />
|
|
Select File
|
|
</label>
|
|
<br />
|
|
<input type="submit" value="Upload" />
|
|
</form>
|
|
</div>
|
|
|
|
<div id="categories">
|
|
<button class="all-button active" id="active-all">All Tags</button>
|
|
</div>
|
|
<div id="chat-container"></div>
|
|
</body>
|
|
</html>
|