OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE HTML> |
| 2 <html i18n-values="dir:textdirection; |
| 3 customlogo:customlogo;"> |
| 4 <head> |
| 5 <meta charset="utf-8"> |
| 6 <title i18n-content="title"></title> |
| 7 <script src="chrome://resources/js/local_strings.js"></script> |
| 8 <link rel="stylesheet" href="chrome://resources/css/button.css"> |
| 9 <link rel="stylesheet" href="new_profile.css"> |
| 10 </head> |
| 11 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> |
| 12 |
| 13 <div id="overlay" class="overlay"> |
| 14 <div id="new-profile-overlay" class="page"> |
| 15 <h3 i18n-content="summaryTitle"></h3> |
| 16 <p i18n-content="summaryBody"></p> |
| 17 <p i18n-content="summaryConclusion"></p> |
| 18 |
| 19 <div align="center"> |
| 20 <table> |
| 21 <tr> |
| 22 <td align="right" i18n-content="profileNameLabel"></td> |
| 23 <td> <form id="profile-name-form"> |
| 24 <input id="profile-name" type="text"/> |
| 25 </form> |
| 26 </td> |
| 27 </tr> |
| 28 <tr> |
| 29 <td align="right" valign="top" i18n-content="profileIconLabel"></td> |
| 30 <td> <div id="avatar-menu"></div> </td> |
| 31 </tr> |
| 32 </table> |
| 33 </div> |
| 34 <br/> |
| 35 |
| 36 <div align="right"> |
| 37 <input id="create-button" type="button" |
| 38 i18n-values="value:createProfile" /> |
| 39 <input id="cancel-button" type="button" |
| 40 i18n-values="value:cancelProfile" /> |
| 41 </div> |
| 42 </div> <!-- page --> |
| 43 </div> <!-- overlay --> |
| 44 |
| 45 <div id="footer"> |
| 46 <div id="footer-content"> |
| 47 <img id="logo-img"> |
| 48 </div> |
| 49 </div> |
| 50 |
| 51 <script src="chrome://newprofile/new_profile.js"></script> |
| 52 <script src="chrome://newprofile/strings.js"></script> |
| 53 <script src="chrome://resources/js/i18n_template.js"></script> |
| 54 <script src="chrome://resources/js/i18n_process.js"></script> |
| 55 </body> |
| 56 </html> |
OLD | NEW |