forked from dart-archive/dart-tutorials-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnote_taker.html
More file actions
41 lines (34 loc) · 1.14 KB
/
Copy pathnote_taker.html
File metadata and controls
41 lines (34 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<!-- Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
for details. All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
-->
<!--
Use this HTML file with note_server.dart and note_client.dart.
The note_server.dart program writes data sent from the client into the
notes.txt file.
-->
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Write a Note</title>
<script async type="application/dart" src="note_client.dart"></script>
<script async src="packages/browser/dart.js"></script>
</head>
<body>
<h1>Write a Note</h1>
<div class="sample_container_id">
<div>
<input id="note_entry" maxlength="50">
<button id="save_note">Save Note</button>
<p id="display_how_many_notes"></p><br>
</div>
<div>
<input id="choose_note" type="text" maxlength="10">
<button id="get_note">Get Note</button>
<p id="display_note"></p><br>
</div>
</div>
</body>
</html>