1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-14 10:26:19 +01:00
bitwarden-browser/apps/desktop/src/index.html

20 lines
557 B
HTML
Raw Normal View History

<!doctype html>
2018-01-31 02:03:41 +01:00
<html>
2021-12-20 15:47:17 +01:00
<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" />
2018-02-10 23:07:46 +01:00
<title>Bitwarden</title>
2021-12-20 15:47:17 +01:00
<base href="" />
</head>
<body>
2018-02-14 04:45:31 +01:00
<app-root>
<div id="loading"><i class="bwi bwi-spinner bwi-spin bwi-3x" aria-hidden="true"></i></div>
2018-02-14 04:45:31 +01:00
</app-root>
2021-12-20 15:47:17 +01:00
</body>
2018-01-16 20:48:34 +01:00
</html>