summaryrefslogtreecommitdiffstats
path: root/browser/components/migration/content/aboutWelcomeBack.xhtml
blob: 0777cc56e9687951359b0a201fba8ee90a42d6ec (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?xml version="1.0" encoding="UTF-8"?>
<!--
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-->
<!DOCTYPE html [ <!ENTITY % htmlDTD PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
%htmlDTD; ]>

<html
  xmlns="http://www.w3.org/1999/xhtml"
  xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
>
  <head>
    <meta
      http-equiv="Content-Security-Policy"
      content="default-src chrome: resource:; img-src chrome: resource: data:; object-src 'none'"
    />
    <meta name="color-scheme" content="light dark" />
    <title data-l10n-id="welcome-back-tab-title"></title>
    <link
      rel="stylesheet"
      href="chrome://global/skin/in-content/info-pages.css"
      media="all"
    />
    <link
      rel="stylesheet"
      href="chrome://browser/skin/aboutWelcomeBack.css"
      media="all"
    />
    <link rel="icon" href="chrome://global/skin/icons/info-filled.svg" />
    <link rel="localization" href="browser/aboutSessionRestore.ftl" />
    <link rel="localization" href="branding/brand.ftl" />
    <script src="chrome://browser/content/aboutSessionRestore.js" />
    <script
      type="module"
      src="chrome://global/content/elements/moz-support-link.mjs"
    />
  </head>

  <body>
    <div class="container tab-list-tree-container">
      <div class="description-wrapper">
        <div class="title">
          <h1 class="title-text" data-l10n-id="welcome-back-page-title"></h1>
        </div>

        <div class="description">
          <p data-l10n-id="welcome-back-page-info"></p>
          <p data-l10n-id="welcome-back-page-info-link">
            <a
              is="moz-support-link"
              id="linkMoreTroubleshooting"
              target="_blank"
              data-l10n-name="link-more"
              support-page="troubleshooting"
            />
          </p>
          <div>
            <label class="radioRestoreContainer radio-container-with-text">
              <input
                class="radioRestoreButton"
                id="radioRestoreAll"
                type="radio"
                name="restore"
                checked="checked"
              />
              <span
                class="radioRestoreLabel"
                data-l10n-id="welcome-back-restore-all-label"
              ></span>
            </label>

            <label class="radioRestoreContainer radio-container-with-text">
              <input
                class="radioRestoreButton"
                id="radioRestoreChoose"
                type="radio"
                name="restore"
              />
              <span
                class="radioRestoreLabel"
                data-l10n-id="welcome-back-restore-some-label"
              ></span>
            </label>
          </div>
        </div>
      </div>

      <xul:tree
        id="tabList"
        flex="1"
        seltype="single"
        hidecolumnpicker="true"
        hidden="true"
      >
        <xul:treecols>
          <xul:treecol
            cycler="true"
            id="restore"
            type="checkbox"
            data-l10n-id="restore-page-restore-header"
          />
          <xul:splitter class="tree-splitter" />
          <xul:treecol
            primary="true"
            id="title"
            data-l10n-id="restore-page-list-header"
            flex="1"
          />
        </xul:treecols>
        <xul:treechildren flex="1" />
      </xul:tree>

      <div class="button-container">
        <xul:button
          class="primary"
          id="errorTryAgain"
          data-l10n-id="welcome-back-restore-button"
        />
      </div>

      <input type="text" id="sessionData" hidden="true" />
    </div>
  </body>
</html>