2020-05-21 11:01:46 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Document</title>
|
2020-05-21 17:57:03 +02:00
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
|
2020-05-21 11:01:46 +02:00
|
|
|
<script src="/scripts/notes_app.js"></script>
|
2020-06-06 17:37:12 +02:00
|
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
2020-05-21 11:01:46 +02:00
|
|
|
<link rel="stylesheet" href="/css/notes_app.css" type="text/css">
|
2020-06-06 17:37:12 +02:00
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
2020-05-21 11:01:46 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2020-05-21 17:57:03 +02:00
|
|
|
<div id=mainHeader>
|
|
|
|
<h1>
|
|
|
|
Quick Notes
|
|
|
|
</h1>
|
|
|
|
<h6>
|
2020-06-06 17:37:12 +02:00
|
|
|
A simple note web app to demonstrate the usage of Promises/Async/Await.
|
2020-05-21 17:57:03 +02:00
|
|
|
</h6>
|
|
|
|
</div>
|
2020-06-05 13:38:05 +02:00
|
|
|
<div id=storageBrowser>
|
|
|
|
<div id=storageBrowserHeader>All Notes</div>
|
2020-06-06 17:37:12 +02:00
|
|
|
<div class=right>
|
|
|
|
<button class="btn btn-default btn-xs" id="refreshButton"><span class="glyphicon glyphicon-refresh"></span></button>
|
2020-06-05 13:38:05 +02:00
|
|
|
</div>
|
2020-06-06 17:37:12 +02:00
|
|
|
|
2020-06-05 13:38:05 +02:00
|
|
|
<div id=noteStorage></div>
|
|
|
|
</div>
|
2020-05-21 17:57:03 +02:00
|
|
|
<div id=addNoteDiv>
|
2020-05-22 14:58:16 +02:00
|
|
|
<button type="button" id=addNoteButton>+</button>
|
2020-05-21 17:57:03 +02:00
|
|
|
</div>
|
2020-05-26 18:23:49 +02:00
|
|
|
<div id=allNotesDiv>
|
|
|
|
</div>
|
2020-05-21 11:01:46 +02:00
|
|
|
</body>
|
|
|
|
</html>
|