OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <title>Settings</title> | 5 <title>Settings</title> |
6 <link rel="import" | 6 <link rel="import" |
7 href="chrome://resources/cr_elements/cr_toggle_button/cr_toggle_button.htm
l"> | 7 href="chrome://resources/cr_elements/cr_toggle_button/cr_toggle_button.htm
l"> |
| 8 <link rel="import" href="chrome://resources/cr_elements/cr_input/cr_input.html
"> |
8 <link rel="import" | 9 <link rel="import" |
9 href="chrome://resources/polymer/paper-button/paper-button.html"> | 10 href="chrome://resources/polymer/paper-button/paper-button.html"> |
10 </head> | 11 </head> |
11 <body> | 12 <body> |
12 <header> | 13 <header> |
13 <h1>Settings</h1> | 14 <h1>Settings</h1> |
14 </header> | 15 </header> |
15 <div class="main"> | 16 <div class="main"> |
16 <paper-button id="manage-button" raised>Manage</paper-button> | 17 <paper-button id="manage-button" raised>Manage</paper-button> |
17 <cr-toggle-button checked></cr-toggle-button> | 18 <cr-toggle-button checked></cr-toggle-button> |
| 19 <section> |
| 20 <h3>cr-input</h3> |
| 21 <cr-input label="Enter Something!"></cr-input> |
| 22 </section> |
18 </div> | 23 </div> |
19 </body> | 24 </body> |
20 </html> | 25 </html> |
OLD | NEW |