26 lines
763 B
HTML
26 lines
763 B
HTML
<!DOCTYPE html>
|
|
<html lang="en-US">
|
|
<head>
|
|
<meta
|
|
http-equiv="Content-Security-Policy"
|
|
content="default-src 'self'; connect-src 'self' ws: wss:; style-src 'self' 'nonce-{{ csp_nonce }}'; script-src 'self' 'nonce-{{ csp_nonce }}' *.pendo.io; img-src 'self' *.pendo.io data:;"
|
|
/>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<script nonce="{{ csp_nonce }}">
|
|
setInterval(function() {
|
|
window.location = '/';
|
|
}, 10000);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<span>
|
|
<p>AWX is installing.</p>
|
|
<p>This page will refresh when complete.</p>
|
|
</span>
|
|
</div>
|
|
</body>
|
|
</html>
|