summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/sync_confirmation/sync_confirmation.html
blob: b6673dadfa23f9d9a2fbe5c5439a0a6a4e361ac7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!doctype html>
<html i18n-values="dir:textdirection;lang:language">
  <head>
    <meta charset="utf-8">
    <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
    <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html">
    <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
    <link rel="stylesheet" href="sync_confirmation.css"></link>
  </head>
  <body>
    <div class="container">
      <div class="top-title-bar" i18n-content="syncConfirmationTitle"></div>
      <div class="details">
        <div class="picture-container">
          <div class="picture">
            <img id="profile-picture"></img>
            <div class="checkmark-bubble"></div>
          </div>
        </div>
        <div class="sync-message"
            i18n-values=".innerHTML:syncConfirmationBody"></div>
        <div class="action-container">
          <paper-button id="confirmButton"
              i18n-content="syncConfirmationConfirmLabel"></paper-button>
          <paper-button id="undoButton"
              i18n-content="syncConfirmationUndoLabel"></paper-button>
        </div>
      </div>
    </div>
  </body>
  <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="sync_confirmation.js"></script>
  <script src="chrome://sync-confirmation/strings.js"></script>
  <script src="chrome://resources/js/i18n_template.js"></script>
</html>