OLD | NEW |
| (Empty) |
1 <!-- Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
2 Use of this source code is governed by a BSD-style license that can be | |
3 found in the LICENSE file. --> | |
4 <!DOCTYPE HTML> | |
5 <html i18n-values="dir:textdirection; | |
6 customlogo:customlogo;"> | |
7 <head> | |
8 <meta charset="utf-8"> | |
9 <title i18n-content="title"></title> | |
10 <script src="chrome://resources/js/local_strings.js"></script> | |
11 <script src="chrome://resources/js/cr.js"></script> | |
12 <script src="chrome://resources/js/util.js"></script> | |
13 <script src="chrome://newprofile/new_profile.js"></script> | |
14 | |
15 <link rel="stylesheet" href="chrome://resources/css/button.css"> | |
16 <link rel="stylesheet" href="new_profile.css"> | |
17 </head> | |
18 <body i18n-values=".style.fontFamily:fontfamily;"> | |
19 <div class="overlay"> | |
20 <div id="new-profile-overlay" class="page"> | |
21 <h3 i18n-content="summaryTitle"></h3> | |
22 <p i18n-content="summaryBody"></p> | |
23 <p i18n-content="summaryConclusion"></p> | |
24 <div id="outer-input-area"> | |
25 <div id="inner-input-area"> | |
26 <div i18n-content="profileNameLabel"></div> | |
27 <div> | |
28 <form id="profile-name-form"> | |
29 <input id="profile-name" type="text"> | |
30 </form> | |
31 </div> | |
32 <div i18n-content="profileIconLabel"></div> | |
33 <div id="avatar-menu"></div> | |
34 </div> | |
35 </div> | |
36 <div class="action-area"> | |
37 <div class="button-strip"> | |
38 <input id="cancel-button" type="button" | |
39 i18n-values="value:cancelProfile"> | |
40 <input id="create-button" type="button" | |
41 i18n-values="value:createProfile"> | |
42 </div> | |
43 </div> | |
44 </div> | |
45 </div> | |
46 <div id="footer"> | |
47 <div id="footer-content"> | |
48 <img id="logo-img"> | |
49 </div> | |
50 </div> | |
51 <!-- TODO(sail): This should be at the top of the page but moving it causes | |
52 text in the page to fail to load. --> | |
53 <script src="chrome://newprofile/strings.js"></script> | |
54 <script src="chrome://resources/js/i18n_template.js"></script> | |
55 <script src="chrome://resources/js/i18n_process.js"></script> | |
56 </body> | |
57 </html> | |
OLD | NEW |