summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/new_profile.html
blob: e6ba432608b4923fe44c0ad63abd64db22c2e93e (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!-- Copyright (c) 2011 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. -->
<!DOCTYPE HTML>
<html i18n-values="dir:textdirection;
                   customlogo:customlogo;">
<head>
<meta charset="utf-8">
<title i18n-content="title"></title>
<script src="chrome://resources/js/local_strings.js"></script>
<script src="chrome://resources/js/cr.js"></script>
<script src="chrome://resources/js/util.js"></script>
<script src="chrome://newprofile/new_profile.js"></script>

<link rel="stylesheet" href="chrome://resources/css/button.css">
<link rel="stylesheet" href="new_profile.css">
</head>
<body i18n-values=".style.fontFamily:fontfamily;">
<div class="overlay">
  <div id="new-profile-overlay" class="page">
    <h3 i18n-content="summaryTitle"></h3>
    <p i18n-content="summaryBody"></p>
    <p i18n-content="summaryConclusion"></p>
    <div id="outer-input-area">
      <div id="inner-input-area">
        <div i18n-content="profileNameLabel"></div>
        <div>
          <form id="profile-name-form">
            <input id="profile-name" type="text">
          </form>
        </div>
        <div i18n-content="profileIconLabel"></div>
        <div id="avatar-menu"></div>
      </div>
    </div>
    <div class="action-area">
      <div class="button-strip">
        <input id="cancel-button" type="button"
            i18n-values="value:cancelProfile">
        <input id="create-button" type="button"
            i18n-values="value:createProfile">
      </div>
    </div>
  </div>
</div>
<div id="footer">
  <div id="footer-content">
    <img id="logo-img">
  </div>
</div>
<!-- TODO(sail): This should be at the top of the page but moving it causes
     text in the page to fail to load. -->
<script src="chrome://newprofile/strings.js"></script>
<script src="chrome://resources/js/i18n_template.js"></script>
<script src="chrome://resources/js/i18n_process.js"></script>
</body>
</html>