OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 |
| 3 <!-- |
| 4 Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5 for details. All rights reserved. Use of this source code is governed by a |
| 6 BSD-style license that can be found in the LICENSE file. |
| 7 --> |
| 8 |
| 9 <html> |
| 10 <head> |
| 11 <meta charset="utf-8"> |
| 12 <title>Local Storage in Dart</title> |
| 13 </head> |
| 14 <body> |
| 15 <h1>Local Storage in Dart</h1> |
| 16 |
| 17 <p> |
| 18 From local storage: <output id="username-output"></output> |
| 19 </p> |
| 20 |
| 21 <label for="username">Username:</label> |
| 22 <input type="text" name="username" id="username"> |
| 23 <input type="submit" id="save" value="Save"> |
| 24 |
| 25 <script type="application/dart" src="localstorage.dart"></script> |
| 26 <script src="packages/browser/dart.js"></script> |
| 27 </body> |
| 28 </html> |
OLD | NEW |