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

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: forgot to git add a few 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..c9add399e1ea644ba03c65cc8c75df00999de780
--- /dev/null
+++ b/chrome/browser/resources/profile_signin_confirmation.html
@@ -0,0 +1,24 @@
+<!DOCTYPE HTML>
+<html i18n-values="dir:textdirection">
+<head>
+ <meta charset="utf-8">
+ <title i18n-content="dialogTitle"></title>
+ <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="dialog-message"></p>
+ <a i18n-content="learnMoreText"
+ href="http://support.google.com/chromeos/bin/answer.py?hl=en&answer=1331549"
James Hawkins 2013/02/13 21:41:31 nit: Indentation must be 4 spaces in.
dconnelly 2013/02/14 08:56:05 Done.
+ target="_blank"></a>
James Hawkins 2013/02/13 21:41:31 nit: Closing tag of a wrapped element must be on a
dconnelly 2013/02/14 08:56:05 Done.
+ <p id="dialog-prompt"></p>
+ <button id="create-button" i18n-content="createProfileButtonText"></button>
+ <button id="continue-button" i18n-content="continueButtonText"></button>
+ <button id="cancel-button" i18n-content="cancelButtonText"></button>
+ <script src="chrome://resources/js/i18n_template2.js"></script>
James Hawkins 2013/02/13 21:41:31 You moved it back. What is the reason?
dconnelly 2013/02/14 08:56:05 Added a comment.
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698