mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
48 lines
1.7 KiB
HTML
48 lines
1.7 KiB
HTML
<html>
|
|
<head>
|
|
<title>KeePassXC - Popup</title>
|
|
<link rel="stylesheet" href="popup.css" />
|
|
<link rel="stylesheet" href="../options/bootstrap.min.css" />
|
|
<script type="text/javascript" src="../jquery-3.2.0.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_remember.js"></script>
|
|
<style type="text/css">
|
|
.credentials {display: none; border-top: 1px solid #333;}
|
|
.connected-database {display: none; font-size: 85%; color: #787878;}
|
|
.credentials .username-new {display: none;}
|
|
.credentials .username-exists {display: none;}
|
|
.small { font-weight: bold; }
|
|
.small .normal { font-weight: normal; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="buttons">
|
|
<p>
|
|
Username or password changed! Save it?
|
|
<br />
|
|
<span class="small information-url">Url: <span class="normal"></span></span>
|
|
<br />
|
|
<span class="small information-username">Username: <span class="normal"></span></span>
|
|
</p>
|
|
<p>
|
|
<button id="btn-new" class="btn btn-success">New</button>
|
|
<button id="btn-update" class="btn btn-warning">Update</button>
|
|
<button id="btn-dismiss" class="btn btn-danger">Dismiss</button>
|
|
</p>
|
|
</div>
|
|
|
|
<div class="connected-database">
|
|
<p>Credentials will be saved in connected database with identifier <em></em>.</p>
|
|
</div>
|
|
|
|
<div class="credentials">
|
|
<p class="username-new">The used username <strong></strong> is currently not saved!</p>
|
|
<p class="username-exists">The credentials with the used username <strong></strong> are marked bold.</p>
|
|
<p>
|
|
Please choose the credentials you want to update:
|
|
</p>
|
|
<ul id="list"></ul>
|
|
</div>
|
|
</body>
|
|
</html>
|