bitwarden-desktop/src/index.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
581 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>
2018-01-16 20:48:34 +01:00
<head>
<meta charset="UTF-8" />
2018-08-02 05:34:58 +02:00
<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 *;"
/>
2018-01-16 20:48:34 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1" />
2018-02-10 23:07:46 +01:00
<title>Bitwarden</title>
2018-01-16 23:30:57 +01:00
<base href="" />
2018-01-16 20:48:34 +01:00
</head>
2019-04-14 03:17:05 +02:00
<body class="layout_frontend">
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>
2018-01-16 20:48:34 +01:00
</body>
</html>