Chromium Code Reviews| Index: chrome/browser/resources/new_profile.html |
| diff --git a/chrome/browser/resources/new_profile.html b/chrome/browser/resources/new_profile.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..26d1636eb05bdd9982f6753946b3471e1f34e4bf |
| --- /dev/null |
| +++ b/chrome/browser/resources/new_profile.html |
| @@ -0,0 +1,51 @@ |
| +<!DOCTYPE HTML> |
|
Evan Stade
2011/07/01 20:33:18
license header
sail
2011/07/01 23:47:04
Done.
|
| +<html i18n-values="dir:textdirection; |
| + customlogo:customlogo;"> |
| +<head> |
| +<meta charset="utf-8"> |
| +<title i18n-content="title"></title> |
| +<script src="chrome://newprofile/new_profile.js"></script> |
| +<script src="chrome://resources/js/local_strings.js"></script> |
| +<script src="chrome://resources/js/cr.js"></script> |
| +<script src="chrome://resources/js/util.js"></script> |
|
Evan Stade
2011/07/01 20:33:18
can you throw in some line returns for readability
sail
2011/07/01 23:47:04
Done.
|
| +<link rel="stylesheet" href="chrome://resources/css/button.css"> |
| +<link rel="stylesheet" href="new_profile.css"> |
| +</head> |
| +<body i18n-values=".style.fontFamily:fontfamily;"> |
| +<div class="overlay"> |
| + <div id="new-profile-overlay" class="page"> |
| + <h3 i18n-content="summaryTitle"></h3> |
| + <p i18n-content="summaryBody"></p> |
| + <p i18n-content="summaryConclusion"></p> |
| + <div id="outer-input-area"> |
| + <div id="inner-input-area"> |
| + <div i18n-content="profileNameLabel"> </div> |
| + <div> |
| + <form id="profile-name-form"> |
| + <input id="profile-name" type="text"> |
| + </form> |
| + </div> |
| + <div i18n-content="profileIconLabel"> </div> |
|
Evan Stade
2011/07/01 20:33:18
remove blank space here and above
sail
2011/07/01 23:47:04
Done.
|
| + <div id="avatar-menu"></div> |
| + </div> |
| + </div> |
| + <div class="action-area"> |
| + <div class="button-strip"> |
| + <input id="cancel-button" type="button" |
| + i18n-values="value:cancelProfile"> |
| + <input id="create-button" type="button" |
| + i18n-values="value:createProfile"> |
|
Evan Stade
2011/07/01 20:33:18
i18n-content=foo
sail
2011/07/01 23:47:04
I don't think this works for <input>. I tried chan
Evan Stade
2011/07/01 23:59:36
use <button>. It's more flexible. I don't know of
|
| + </div> |
| + </div> |
| + </div> |
| +</div> |
| +<div id="footer"> |
| + <div id="footer-content"> |
| + <img id="logo-img"> |
| + </div> |
| +</div> |
| +<script src="chrome://newprofile/strings.js"></script> |
| +<script src="chrome://resources/js/i18n_template.js"></script> |
| +<script src="chrome://resources/js/i18n_process.js"></script> |
| +</body> |
| +</html> |