254 lines
7.2 KiB
HTML
254 lines
7.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Meeting Details</title>
|
|
<style>
|
|
:root {
|
|
--primary-color: #1b8354;
|
|
--background-color: #fcfcfc;
|
|
--text-color: #333;
|
|
--border-color: #e0e0e0;
|
|
--card-bg: #ffffff;
|
|
--secondary-text: #666;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background-color: var(--background-color);
|
|
color: var(--text-color);
|
|
line-height: 1.6;
|
|
padding: 20px;
|
|
}
|
|
|
|
.container {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.header {
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
padding: 20px 0;
|
|
border-bottom: 1px solid var(--border-color);
|
|
}
|
|
|
|
.header h1 {
|
|
color: var(--primary-color);
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.card {
|
|
background: var(--card-bg);
|
|
border-radius: 10px;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
|
|
padding: 25px;
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.card-title {
|
|
color: var(--primary-color);
|
|
margin-bottom: 20px;
|
|
padding-bottom: 10px;
|
|
border-bottom: 1px solid var(--border-color);
|
|
}
|
|
|
|
.detail-row {
|
|
display: flex;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.detail-label {
|
|
font-weight: 600;
|
|
min-width: 200px;
|
|
color: var(--secondary-text);
|
|
}
|
|
|
|
.detail-value {
|
|
flex: 1;
|
|
}
|
|
|
|
.status-badge {
|
|
display: inline-block;
|
|
padding: 5px 12px;
|
|
border-radius: 20px;
|
|
font-size: 0.85em;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.status-waiting {
|
|
background-color: #fff8e1;
|
|
color: #ff8f00;
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
gap: 15px;
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.btn {
|
|
padding: 12px 25px;
|
|
border-radius: 5px;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
display: inline-block;
|
|
text-align: center;
|
|
transition: all 0.3s ease;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: var(--primary-color);
|
|
color: white;
|
|
border: 1px solid var(--primary-color);
|
|
}
|
|
|
|
.btn-secondary {
|
|
background-color: white;
|
|
color: var(--primary-color);
|
|
border: 1px solid var(--primary-color);
|
|
}
|
|
|
|
.btn:hover {
|
|
opacity: 0.9;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.detail-row {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.detail-label {
|
|
min-width: auto;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.actions {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.btn {
|
|
width: 100%;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>Zoom Meeting Details</h1>
|
|
<p>All information about your scheduled meeting</p>
|
|
</div>
|
|
|
|
<!-- Messages -->
|
|
{% if messages %}
|
|
<div class="messages">
|
|
{% for message in messages %}
|
|
<div class="alert alert-{{ message.tags }}">
|
|
{{ message }}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
|
|
<div class="card">
|
|
<h2 class="card-title">Meeting Information</h2>
|
|
|
|
<div class="detail-row">
|
|
<div class="detail-label">Topic:</div>
|
|
<div class="detail-value">{{ meeting.topic }}</div>
|
|
</div>
|
|
|
|
<div class="detail-row">
|
|
<div class="detail-label">Meeting ID:</div>
|
|
<div class="detail-value">{{ meeting.id }}</div>
|
|
</div>
|
|
|
|
<div class="detail-row">
|
|
<div class="detail-label">Status:</div>
|
|
<div class="detail-value">
|
|
<span class="status-badge status-waiting">{{ meeting.status|title }}</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="detail-row">
|
|
<div class="detail-label">Start Time:</div>
|
|
<div class="detail-value">{{ meeting.start_time }}</div>
|
|
</div>
|
|
|
|
<div class="detail-row">
|
|
<div class="detail-label">Duration:</div>
|
|
<div class="detail-value">{{ meeting.duration }} minutes</div>
|
|
</div>
|
|
|
|
<div class="detail-row">
|
|
<div class="detail-label">Host:</div>
|
|
<div class="detail-value">{{ meeting.host_email }}</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<h2 class="card-title">Join Information</h2>
|
|
|
|
<div class="detail-row">
|
|
<div class="detail-label">Password:</div>
|
|
<div class="detail-value">{{ meeting.password }}</div>
|
|
</div>
|
|
|
|
<div class="detail-row">
|
|
<div class="detail-label">H.323 Password:</div>
|
|
<div class="detail-value">{{ meeting.h323_password }}</div>
|
|
</div>
|
|
|
|
<div class="detail-row">
|
|
<div class="detail-label">PSTN Password:</div>
|
|
<div class="detail-value">{{ meeting.pstn_password }}</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<h2 class="card-title">Meeting Settings</h2>
|
|
|
|
<div class="detail-row">
|
|
<div class="detail-label">Host Video:</div>
|
|
<div class="detail-value">{{ meeting.settings.host_video|yesno:"Enabled,Disabled" }}</div>
|
|
</div>
|
|
|
|
<div class="detail-row">
|
|
<div class="detail-label">Participant Video:</div>
|
|
<div class="detail-value">{{ meeting.settings.participant_video|yesno:"Enabled,Disabled" }}</div>
|
|
</div>
|
|
|
|
<div class="detail-row">
|
|
<div class="detail-label">Join Before Host:</div>
|
|
<div class="detail-value">{{ meeting.settings.join_before_host|yesno:"Allowed,Not Allowed" }}</div>
|
|
</div>
|
|
|
|
<div class="detail-row">
|
|
<div class="detail-label">Waiting Room:</div>
|
|
<div class="detail-value">{{ meeting.settings.waiting_room|yesno:"Enabled,Disabled" }}</div>
|
|
</div>
|
|
|
|
<div class="detail-row">
|
|
<div class="detail-label">Audio:</div>
|
|
<div class="detail-value">{{ meeting.settings.audio }}</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="actions">
|
|
<a href="{{ meeting.start_url }}" class="btn btn-primary" target="_blank">Start Meeting</a>
|
|
<a href="{{ meeting.join_url }}" class="btn btn-secondary" target="_blank">Join Meeting</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |