Chromium Code Reviews| Index: chrome/browser/resources/chromeos/login/oobe_welcome_dialog.html |
| diff --git a/chrome/browser/resources/chromeos/login/oobe_welcome_dialog.html b/chrome/browser/resources/chromeos/login/oobe_welcome_dialog.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..5146b02f532fb3553473338ea29cacdfe35e4b52 |
| --- /dev/null |
| +++ b/chrome/browser/resources/chromeos/login/oobe_welcome_dialog.html |
| @@ -0,0 +1,40 @@ |
| +<!-- Copyright 2016 The Chromium Authors. All rights reserved. |
| + Use of this source code is governed by a BSD-style license that can be |
| + found in the LICENSE file. --> |
| + |
| +<link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classes/iron-flex-layout.html"> |
| +<link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html"> |
| + |
| +<!-- |
| + OOBE Welcome screen |
| +--> |
| +<dom-module name="oobe-welcome-dialog"> |
| + <template> |
| + <link rel="stylesheet" href="oobe_dialog_host.css"> |
| + <link rel="stylesheet" href="oobe_welcome_dialog.css"> |
| + <div class="layout horizontal flex"> |
| + <div class="vertical-margin"></div> |
| + <div class="welcome-content flex layout vertical center"> |
| + <h1 id="title" i18n-content="networkScreenGreeting"></h1> |
| + <img id="welcomeIllustration" src="images/welcome_illustration_2x.png"> |
|
michaelpg
2016/10/09 21:02:51
shouldn't this depend on screen density?
Alexander Alekseev
2016/10/11 00:01:53
Yes, it should. But this is going to be another CL
michaelpg
2016/10/14 16:45:21
add a TODO
Alexander Alekseev
2016/10/15 00:23:16
Done.
|
| + <div class="flex"></div> |
| + <div id="buttons" class="layout horizontal center"> |
| + <oobe-welcome-secondary-button icon="icons:language" |
| + on-tap="onLanguageClicked_"> |
| + <div>[[currentLanguage]]</div> |
| + </oobe-welcome-secondary-button> |
| + <oobe-welcome-secondary-button icon="icons:accessibility" |
| + on-tap="onAccessibilityClicked_"> |
| + <div i18n-content="accessibilityLink"></div> |
| + </oobe-welcome-secondary-button> |
| + <div class="flex"></div> |
| + <oobe-text-button inverse on-tap="onNextClicked_"> |
| + <div i18n-content="welcomeNextButtonText"></div> |
| + </oobe-text-button> |
| + </div> |
| + <div id="bottom-margin"></div> |
| + </div> |
| + <div class="vertical-margin"></div> |
| + </div> |
| + </template> |
| +</dom-module> |