TimeChain/index.html
Jason Tudisco c617c63510 Change page security.
Added special script to handle parcel and node require.
Added new tagging control.
Adding new HTML Sanitizer.
Packages so I could be sqlite with the right electron version.
Some style changes.
Interface changes.
Changes to the sqlite/client. Interfaces cuased errors.
Fixed bugs in electron ipc handling.
Fixes to the sqlite libs.
Create a new input control that can handle pasting.
pasting HTML works with cycle through HTML,Text, Sanatized HTML.
New UI controls.
Time stamp control has more functionality.
2022-02-03 03:27:51 -06:00

22 lines
655 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script type="module" src="r.js"></script>
<title>Time Chain</title>
<link rel="stylesheet" href="src/css/main.css">
<link rel="stylesheet" type="text/css" href="node_modules/@yaireo/tagify/dist/tagify.css">
</head>
<body>
<div id="timechain"></div>
<div class="loading" id="main-loading">
<h1>Time Chain!</h1>
<p>Time traveling your data! Comming soon...</p>
<p id="timestamp"></p>
<img src="src/img/chain2.svg" class="rotate">
</div>
<script type="module" src="src/dist/start.js"></script>
</body>
</html>