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

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

Issue 12221111: Add a modal confirmation dialog to the enterprise profile sign-in flow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move WebUI handler into WebDialogDelegate implementation Created 7 years, 10 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
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection">
3 <head>
4 <meta charset="utf-8">
5 <title i18n-content="dialogTitle"></title>
6 <link rel="stylesheet" href="profile_signin_confirmation.css">
7 <script src="chrome://resources/js/cr.js"></script>
8 <script src="chrome://resources/js/load_time_data.js"></script>
9 <script src="chrome://resources/js/util.js"></script>
10 <script src="strings.js"></script>
11 <script src="profile_signin_confirmation.js"></script>
12 </head>
13 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
14 <h1 i18n-content="dialogTitle"></h1>
15 <p id="dialogMessage"></p>
16 <a i18n-content="learnMoreText" href="#"></a>
Roger Tawa OOO till Jul 10th 2013/02/11 16:24:39 might want to keep the <a> inside the <p> so that
dconnelly 2013/02/12 10:04:36 I thought that too, but I sent a screenshot to Cyr
17 <p id="dialogPrompt"></p>
18 <button id="createButton" i18n-content="createProfileButtonText"></button>
19 <button id="continueButton" i18n-content="continueButtonText"></button>
20 <button id="cancelButton" i18n-content="cancelButtonText"></button>
21 <script src="chrome://resources/js/i18n_template2.js"></script>
22 </body>
23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698