mirror of
https://github.com/bitwarden/web
synced 2026-01-06 10:33:17 +00:00
* Stylesheets * Theme Configuration * Options Area * swal2 style Missed the swal2 styling and improved the table theming * Icon styling * Fix theme not saving * Update English Remove colour to make it more translatable between English and American * Update messages.json * Login logo * dropdown and login logo * btn-link and totp fix Added a border for extra readability on the btn-link * Organisation Styling * Update messages.json * Update webauthn-fallback.ts Add missing semicolon and enable console.error bypass for tslint * Fix contrast issues Update the blue to match the browser extension and lighten the grey for text-muted variable * Add Paypal Container and Loading svg file * Update jslib * Password Generator contrast fix
32 lines
1.0 KiB
HTML
32 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=1010">
|
|
<meta name="theme-color" content="#175DDC">
|
|
|
|
<title page-title>Bitwarden Web Vault</title>
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="images/icons/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="images/icons/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="images/icons/favicon-16x16.png">
|
|
<link rel="mask-icon" href="images/icons/safari-pinned-tab.svg" color="#175DDC">
|
|
<link rel="manifest" href="manifest.json">
|
|
</head>
|
|
|
|
<body class="layout_frontend">
|
|
<app-root>
|
|
<div class="mt-5 d-flex justify-content-center">
|
|
<div>
|
|
<div id="loginLogo" class="mb-4 logo" alt="Bitwarden"></div>
|
|
<p class="text-center">
|
|
<i class="fa fa-spinner fa-spin fa-2x text-muted" title="Loading" aria-hidden="true"></i>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</app-root>
|
|
</body>
|
|
|
|
</html>
|