burgernotes/templates/app.html

45 lines
1.7 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-08-04 18:48:26 +01:00
<button id="newNote" class="newNote"><img id="newNoteImage" draggable="false" src="/static/svg/add.svg">new note</button>
2023-07-21 20:52:06 +01:00
<div id="notesDiv" class="notesDiv">
2023-08-04 18:48:26 +01:00
<button class="loadingStuff" id="loadingStuff"></button>
2023-07-21 20:52:06 +01:00
</div>
</div>
2023-07-22 17:15:59 +01:00
<div id="optionsCoverDiv" class="optionsCoverDiv hidden">
<div class="optionsDiv">
2023-07-22 19:03:37 +01:00
<button class="exit" id="exitThing">X</button>
2023-07-22 17:15:59 +01:00
<h3>manage your account</h3>
<p id="usernameThing"></p>
2023-08-02 20:08:11 +01:00
<progress id="storageProgressThing" value="0" max="100"></progress><br>
2023-07-22 17:15:59 +01:00
<p id="storageThing"></p>
<button id="logOutButton">log out</button>
2023-08-02 20:08:11 +01:00
<button id="deleteMyAccountButton">delete my account</button>
2023-07-22 17:15:59 +01:00
</div>
</div>
2023-07-21 20:52:06 +01:00
<textarea id="noteBox" class="noteBox"></textarea>
<script type="text/javascript" src="/static/js/main.js"></script>
</body>
</html>