35 lines
1.4 KiB
PHP
35 lines
1.4 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }
|
|
.container { max-width: 600px; margin: 0 auto; padding: 20px; }
|
|
.header { background: #e61e1e; color: white; padding: 20px; text-align: center; }
|
|
.content { padding: 20px; background: #f9f9f9; }
|
|
.footer { text-align: center; padding: 20px; color: #666; font-size: 12px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>TAKEONE</h1>
|
|
</div>
|
|
<div class="content">
|
|
<h2>Video Uploaded Successfully! 🎉</h2>
|
|
<p>Hi {{ $userName }},</p>
|
|
<p>Your video <strong>"{{ $video->title }}"</strong> has been uploaded successfully!</p>
|
|
<p>Your video is now being processed and will be available shortly.</p>
|
|
<p>Video Details:</p>
|
|
<ul>
|
|
<li>Size: {{ round($video->size / 1024 / 1024, 2) }} MB</li>
|
|
<li>Orientation: {{ $video->orientation }}</li>
|
|
</ul>
|
|
<p><a href="{{ url('/videos/' . $video->id) }}" style="background: #e61e1e; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px;">View Video</a></p>
|
|
</div>
|
|
<div class="footer">
|
|
<p>TAKEONE Video Platform</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|