87 lines
2.6 KiB
HTML
87 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Transcript Ready</title>
|
|
<link rel="stylesheet" type="text/css" href="{css_path}">
|
|
<style>
|
|
body {{
|
|
font-family: Arial, sans-serif;
|
|
line-height: 1.5;
|
|
background-color: #ffffff;
|
|
color: #333;
|
|
margin: 0;
|
|
padding: 20px;
|
|
}}
|
|
.container {{
|
|
width: 100%;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 5px;
|
|
}}
|
|
h1 {{
|
|
font-size: 1.5em;
|
|
margin-top: 0;
|
|
}}
|
|
p {{
|
|
margin: 10px 0;
|
|
font-size: 1em;
|
|
}}
|
|
.error-message, .success-message {{
|
|
padding: 10px 0;
|
|
margin-bottom: 15px;
|
|
font-size: 1em;
|
|
}}
|
|
.error-message {{
|
|
color: #721c24;
|
|
}}
|
|
.success-message {{
|
|
color: #7C6DA0;
|
|
}}
|
|
.contact {{
|
|
margin-top: 15px;
|
|
font-size: 1em;
|
|
color: #333;
|
|
}}
|
|
.contact a {{
|
|
color: #0056b3;
|
|
text-decoration: none;
|
|
}}
|
|
.contact a:hover {{
|
|
text-decoration: underline;
|
|
}}
|
|
.disclaimer {{
|
|
margin-top: 20px;
|
|
font-size: 1em;
|
|
color: #333;
|
|
}}
|
|
.signature {{
|
|
margin-top: 20px;
|
|
font-size: 1em;
|
|
color: #333;
|
|
}}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1 style="color: #7C6DA0;">Transcript Ready</h1>
|
|
<p>Dear user:</p>
|
|
<p>Your file has been successfully processed, and the transcript is now ready. The transcript of your audio or video file is attached to this email.</p>
|
|
<p>We hope you find the transcript useful. If you have any questions or need further assistance, please do not hesitate to contact our support team.</p>
|
|
<div class="contact">
|
|
<p>You can reach our support team at <a href="mailto:{contact_email}">{contact_email}</a>. They are available to help with any questions or issues you may have.</p>
|
|
</div>
|
|
<div class="disclaimer">
|
|
<p>Please note that our support team cannot modify the content of the transcript. They can assist with any other questions or concerns you may have.</p>
|
|
</div>
|
|
<div class="signature">
|
|
<p>Thank you for using our transcription service!</p>
|
|
<p>A.P.Strom</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|