mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-11 10:10:25 +01:00
28de9439be
* [deps] Autofill: Update prettier to v3 * prettier formatting updates --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jonathan Prusik <jprusik@classynemesis.com>
20 lines
557 B
HTML
20 lines
557 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta
|
|
http-equiv="Content-Security-Policy"
|
|
content="default-src 'self'; style-src 'self' 'unsafe-inline';
|
|
img-src 'self' data: *; child-src *; frame-src *; connect-src *;"
|
|
/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Bitwarden</title>
|
|
<base href="" />
|
|
</head>
|
|
<body>
|
|
<app-root>
|
|
<div id="loading"><i class="bwi bwi-spinner bwi-spin bwi-3x" aria-hidden="true"></i></div>
|
|
</app-root>
|
|
</body>
|
|
</html>
|