mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
99 lines
4.1 KiB
HTML
99 lines
4.1 KiB
HTML
<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.2.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 own 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>
|