Burgernotes/templates/app.html

31 lines
1.1 KiB
HTML
Raw Normal View History

2023-07-21 20:52:06 +01:00
<!DOCTYPE html>
<html>
<head>
<title>burgernotes</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" type="text/css" href="/static/css/style.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.1.1/crypto-js.min.js"
integrity="sha512-E8QSvWZ0eCLGk4km3hxSsNmGWbLtSCSUcewDQPQWZF6pEU8GlT8a5fF32wOl1i8ftdMhssTrF/OhyGWwonTcXA=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</head>
<body>
<div class="topBar">
<p class="logo">burgernotes</p>
<p id="usernameBox" class="usernameBox"></p>
</div>
<div id="notesBar" class="notesBar">
2023-07-21 22:54:43 +01:00
<button id="newNote" class="newNote"><img id="newNoteImage" src="/static/svg/add.svg">new note</button>
2023-07-21 20:52:06 +01:00
<div id="notesDiv" class="notesDiv">
</div>
</div>
<textarea id="noteBox" class="noteBox"></textarea>
<script type="text/javascript" src="/static/js/main.js"></script>
</body>
</html>