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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/profile_signin_confirmation.html
diff --git a/chrome/browser/resources/profile_signin_confirmation.html b/chrome/browser/resources/profile_signin_confirmation.html
new file mode 100644
index 0000000000000000000000000000000000000000..3b227ade8233431b1e37e5b138af30d31f95fa9b
--- /dev/null
+++ b/chrome/browser/resources/profile_signin_confirmation.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML>
+<html i18n-values="dir:textdirection">
+<head>
+ <meta charset="utf-8">
+ <title i18n-content="dialogTitle"></title>
+ <link rel="stylesheet" href="profile_signin_confirmation.css">
+ <script src="chrome://resources/js/cr.js"></script>
+ <script src="chrome://resources/js/load_time_data.js"></script>
+ <script src="chrome://resources/js/util.js"></script>
+ <script src="strings.js"></script>
+ <script src="profile_signin_confirmation.js"></script>
+</head>
+<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
+ <h1 i18n-content="dialogTitle"></h1>
+ <p id="dialogMessage"></p>
+ <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
+ <p id="dialogPrompt"></p>
+ <button id="createButton" i18n-content="createProfileButtonText"></button>
+ <button id="continueButton" i18n-content="continueButtonText"></button>
+ <button id="cancelButton" i18n-content="cancelButtonText"></button>
+ <script src="chrome://resources/js/i18n_template2.js"></script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698