58 lines
1.9 KiB
HTML
58 lines
1.9 KiB
HTML
<html>
|
|
<head>
|
|
<!--#include virtual="/base.html" -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
<link rel="stylesheet" href="css/all.css"/>
|
|
<!--#include virtual="/title.html" -->
|
|
<script><!--#include virtual="/interface_config.js" --></script>
|
|
<script src="static/close.js"></script>
|
|
<style>
|
|
.meeting-intelligence-link {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: 24px;
|
|
}
|
|
.meeting-intelligence-link a {
|
|
background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
|
|
border-radius: 8px;
|
|
color: #fff;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
padding: 14px 28px;
|
|
text-decoration: none;
|
|
transition: opacity 0.2s;
|
|
touch-action: manipulation;
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
.meeting-intelligence-link a:hover {
|
|
opacity: 0.9;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="redirectPageMessage">
|
|
<div class="thanks-msg">
|
|
<p id="thanksMessage"></p>
|
|
</div>
|
|
<div class="meeting-intelligence-link">
|
|
<a href="/" id="miLink" onclick="openDashboard(event)">View Meeting Recordings & Transcripts</a>
|
|
</div>
|
|
<div class="hint-msg">
|
|
<p>
|
|
<span id="hintQuestion">Did you know?</span>
|
|
<span class="hint-msg__holder" id="hintMessage"></span>
|
|
</p>
|
|
<div class="happy-software"></div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
function openDashboard(e) {
|
|
e.preventDefault();
|
|
window.location.href = '/';
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|