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.

37 lines
1.3 KiB
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="../global.css" />
<link rel="stylesheet" href="./chat.css" />
</head>
<body>
<div class="meta">
<a href="." class="back">back</a>
<button id="info-button">?</button> <br />
<div class="info" id="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>
<div id="categories">
<button class="all-button active" id="active-all">All Tags</button>
</div>
<div id="chat-container"></div>
</body>
</html>