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

Unified Diff: chrome/browser/resources/welcome/welcome.html

Issue 2252063002: Adding client code for new desktop First Run Experience. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 3 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
« no previous file with comments | « chrome/browser/resources/welcome/welcome.css ('k') | chrome/browser/resources/welcome/welcome.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/welcome/welcome.html
diff --git a/chrome/browser/resources/welcome/welcome.html b/chrome/browser/resources/welcome/welcome.html
new file mode 100644
index 0000000000000000000000000000000000000000..f3408af18ed21a9bfc0b9a2c905d41e6b85768d7
--- /dev/null
+++ b/chrome/browser/resources/welcome/welcome.html
@@ -0,0 +1,41 @@
+<!doctype html>
+<html>
+<head>
+ <title>$i18n{headerText}</title>
+
+ <link rel="import" href="chrome://resources/html/polymer.html">
+ <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html">
+ <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html">
+
+ <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
+ <link rel="stylesheet" href="chrome://welcome/welcome.css">
+
+ <script src="chrome://resources/js/load_time_data.js"></script>
+ <script src="chrome://welcome/welcome.js"></script>
+
+</head>
+<body>
+ <div class="spacer"></div>
+ <div class="content">
+ <div class="logo">
+ <div class="logo-icon">
+ <img src="chrome://welcome/logo.png" class="logo-bw">
+ <img src="chrome://welcome/logo.png" class="logo-color">
+ </div>
+ <div class="logo-shadow"></div>
+ </div>
+ <div class="heading">$i18n{headerText}</div>
+<if expr="_google_chrome">
+ <div class="subheading">$i18n{subheaderText}</div>
+</if>
+ <div class="signin">
+ <div class="signin-description">$i18n{descriptionText}</div>
+ <div class="signin-buttons">
+ <paper-button class="action">$i18n{acceptText}</paper-button>
+ <a href="#" class="link">$i18n{declineText}</a>
+ </div>
+ </div>
+ </div>
+ <div class="watermark"></div>
+</body>
+</html>
« no previous file with comments | « chrome/browser/resources/welcome/welcome.css ('k') | chrome/browser/resources/welcome/welcome.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698