Welcome to mirror list, hosted at ThFree Co, Russian Federation.

popup.html « popups « keepassxc-browser - github.com/keepassxreboot/keepassxc-browser.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d049a0a8e77ee01466fe59c3a4755b93a1d2f69c (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
<html>
  <head>
    <title>KeePassXC - Popup</title>
    <meta charset="UTF-8">
    <link rel="stylesheet" href="popup.css" />
    <link rel="stylesheet" href="../options/bootstrap.min.css" />
    <script type="text/javascript" src="../browser-polyfill.min.js"></script>
    <script type="text/javascript" src="../global.js"></script>
    <script type="text/javascript" src="../jquery-3.3.1.min.js"></script>
    <script type="text/javascript" src="../options/bootstrap.min.js" /></script>
    <script type="text/javascript" src="popup_functions.js" /></script>
    <script type="text/javascript" src="popup.js" /></script>
  </head>
  <body>
    <div class="container">
      <div id="settings" class="settings">
        <button id="btn-options" class="btn btn-sm btn-success"><span class="glyphicon glyphicon-cog"></span> Settings</button>
        <button id="btn-choose-credential-fields" class="btn btn-sm btn-warning"><span class="glyphicon glyphicon-list-alt"></span> Choose custom credential fields for this page</button>
        <button id="lock-database-button" class="btn btn-danger" title="Lock database"><span class="glyphicon glyphicon-lock"></span></button>

        <div id="update-available" class="alert alert-danger">
          You use an old version of KeePassXC.
          <br />
          <a target="_blank" class="alert-link" href="https://keepassxc.org/download">Please download the latest version from keepassxc.org</a>.
        </div>
      </div>

      <div id="initial-state">
        <p><img style="margin-right: 1em" src="throbber.gif"/> Checking status...</p>
      </div>

      <div id="not-configured" style="display: none">
        <p>
          KeePassXC-Browser has not been configured.
          Press the connect button to register and pair with KeePassXC.
        </p>
        <div style="text-align: right">
          <button id="connect-button" class="btn btn-sm btn-primary"><span class="glyphicon glyphicon-link"></span> Connect</button>
        </div>
      </div>

      <div id="need-reconfigure" style="display: none">
        <p>
          KeePassXC-Browser has been disconnected from KeePassXC.
        </p>
        <code id="need-reconfigure-message"></code>
        <p>
          Press the reconnect button to establish a new connection.
        </p>
        <div style="text-align: right">
          <button id="reconnect-button" class="btn btn-sm btn-primary"><span class="glyphicon glyphicon-refresh"></span> Reconnect</button>
        </div>
      </div>

      <div id="configured-not-associated" style="display: none">
        <p>
          KeePassXC-Browser has been configured using the identifier
          <em id="unassociated-identifier"></em> and has not yet
          connected to KeePassXC.
        </p>
      </div>

      <div id="configured-and-associated" style="display: none">
        <p>
          KeePassXC-Browser has been configured using the identifier
          "<em id="associated-identifier"></em>" and is successfully
          connected to KeePassXC.
        </p>
        <div style="text-align: right">
            <button id="redetect-fields-button" class="btn btn-sm btn-primary"><span class="glyphicon glyphicon-list-alt"></span> Redetect credential fields</button>
        </div>
      </div>

      <div id="error-encountered" style="display: none">
        <p>
          KeePassXC-Browser has encountered an error:
        </p>
        <p style="margin-left: 1em">
          <code id="error-message"></code>
        </p>
        <div style="text-align: right">
          <button id="reload-status-button" class="btn btn-sm btn-primary"><span class="glyphicon glyphicon-refresh"></span> Reload</button>
        </div>
      </div>

      <div id="database-not-opened" style="display: none">
        <p>
          KeePassXC-Browser has encountered an error:
        </p>
        <p style="margin-left: 1em">
          <code id="database-error-message"></code>
        </p>
        <div style="text-align: right">
          <button id="reopen-database-button" class="btn btn-sm btn-primary"><span class="glyphicon glyphicon-lock"></span> Reopen database</button>
        </div>
      </div>
    </div>
  </body>
</html>