mdt5-2-webapp/html/index.html
Gregor Wuest 487f4e0bfb final
missing:
 - commentary
 - its ugly but working
2020-06-06 17:37:12 +02:00

36 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="/scripts/notes_app.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="/css/notes_app.css" type="text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<body>
<div id=mainHeader>
<h1>
Quick Notes
</h1>
<h6>
A simple note web app to demonstrate the usage of Promises/Async/Await.
</h6>
</div>
<div id=storageBrowser>
<div id=storageBrowserHeader>All Notes</div>
<div class=right>
<button class="btn btn-default btn-xs" id="refreshButton"><span class="glyphicon glyphicon-refresh"></span></button>
</div>
<div id=noteStorage></div>
</div>
<div id=addNoteDiv>
<button type="button" id=addNoteButton>+</button>
</div>
<div id=allNotesDiv>
</div>
</body>
</html>