Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(195)

Side by Side Diff: chrome/browser/resources/new_profile.html

Issue 7275026: Revert 90820 - Multi-Profiles: New Profile Setup UI (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/new_profile.css ('k') | chrome/browser/resources/new_profile.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 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 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>
OLDNEW
« no previous file with comments | « chrome/browser/resources/new_profile.css ('k') | chrome/browser/resources/new_profile.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698