summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/inline_login/inline_login.html
blob: 3bc61db7ddce5ad554c02876974b6ab01f3a4228 (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
<!doctype html>
<html dir="$i18n{textdirection}" lang="$i18n{language}">
<head>
  <title>$i18n{title}</title>
  <link rel="import" href="chrome://resources/html/polymer.html">
  <link rel="import" href="chrome://resources/cr_elements/icons.html">
  <link rel="stylesheet" href="chrome://resources/css/spinner.css">
  <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
  <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.html">
  <link rel="import" href="chrome://resources/cr_elements/cr_icons_css.html">
  <link rel="import" href="chrome://resources/cr_elements/cr_button/cr_button.html">
  <link rel="stylesheet" href="chrome://chrome-signin/inline_login.css">
  <script src="chrome://resources/js/cr.js"></script>
  <script src="chrome://resources/js/cr/event_target.js"></script>
  <script src="chrome://resources/js/load_time_data.js"></script>
  <script src="chrome://resources/js/util.js"></script>
  <script src="chrome://chrome-signin/gaia_auth_host.js"></script>
  <script src="chrome://chrome-signin/inline_login.js"></script>
  <script src="chrome://chrome-signin/strings.js"></script>
</head>
<body>
  <div id="contents" class="loading">
    <webview id="signin-frame" name="signin-frame" allowscaling></webview>
    <div id="spinner-container">
      <div class="spinner"></div>
    </div>
  </div>

  <cr-button
      id="navigation-button"
      aria-label="$i18n{accessibleBackButtonLabel}">
    <iron-icon id="navigation-icon"></iron-icon>
    $i18n{accessibleBackButtonLabel}
  </cr-button>
</body>
</html>