1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-05 09:10:53 +01:00
bitwarden-browser/src/index.html

20 lines
577 B
HTML
Raw Normal View History

2018-01-16 21:58:17 +01:00
<!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 class="layout_frontend">
2018-02-14 04:45:31 +01:00
<app-root>
2021-12-20 15:47:17 +01:00
<div id="loading"><i class="fa fa-spinner fa-spin fa-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>