Spaces:
Sleeping
Sleeping
| <html lang="vi"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Cập nhật tập phim mới - TPHIMX</title> | |
| <style> | |
| body { | |
| margin: 0; | |
| padding: 0; | |
| background-color: #0f0f0f; | |
| color: #ffffff; | |
| font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; | |
| } | |
| .wrapper { | |
| width: 100%; | |
| background-color: #0f0f0f; | |
| padding: 40px 0; | |
| } | |
| .container { | |
| max-width: 600px; | |
| margin: 0 auto; | |
| background: rgba(255, 255, 255, 0.02); | |
| border: 1px solid rgba(255, 255, 255, 0.08); | |
| border-radius: 32px; | |
| overflow: hidden; | |
| box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8); | |
| } | |
| .header { | |
| padding: 40px 20px; | |
| text-align: center; | |
| background: linear-gradient(135deg, #1f1f1f 0%, #0c0c0c 100%); | |
| border-bottom: 1px solid rgba(255, 255, 255, 0.05); | |
| } | |
| .logo { | |
| font-size: 32px; | |
| font-weight: 900; | |
| letter-spacing: -1px; | |
| color: #ffffff; | |
| text-decoration: none; | |
| } | |
| .logo span { | |
| color: #e50914; | |
| } | |
| .content { | |
| padding: 40px 30px; | |
| } | |
| h1 { | |
| font-size: 22px; | |
| font-weight: 800; | |
| margin-top: 0; | |
| color: #ffffff; | |
| line-height: 1.4; | |
| } | |
| p { | |
| font-size: 15px; | |
| color: #a0a0a0; | |
| line-height: 1.6; | |
| margin: 0 0 20px 0; | |
| } | |
| .movie-box { | |
| background: rgba(255, 255, 255, 0.04); | |
| border: 1px solid rgba(255, 255, 255, 0.06); | |
| border-radius: 20px; | |
| padding: 24px; | |
| margin: 30px 0; | |
| text-align: left; | |
| } | |
| .movie-title { | |
| font-size: 18px; | |
| font-weight: 900; | |
| color: #ffffff; | |
| margin-bottom: 12px; | |
| } | |
| .episode-list { | |
| margin: 0; | |
| padding-left: 20px; | |
| color: #e50914; | |
| font-weight: bold; | |
| } | |
| .episode-list li { | |
| margin-bottom: 8px; | |
| color: #ffffff; | |
| } | |
| .btn-container { | |
| text-align: center; | |
| margin-top: 30px; | |
| } | |
| .btn { | |
| display: inline-block; | |
| padding: 16px 36px; | |
| background-color: #e50914; | |
| color: #ffffff ; | |
| font-weight: 900; | |
| text-transform: uppercase; | |
| letter-spacing: 1px; | |
| text-decoration: none; | |
| border-radius: 16px; | |
| box-shadow: 0 10px 20px rgba(229, 9, 20, 0.3); | |
| transition: all 0.3s; | |
| } | |
| .footer { | |
| padding: 30px 20px; | |
| text-align: center; | |
| font-size: 12px; | |
| color: #606060; | |
| border-top: 1px solid rgba(255, 255, 255, 0.05); | |
| background: rgba(0, 0, 0, 0.2); | |
| } | |
| .footer a { | |
| color: #a0a0a0; | |
| text-decoration: none; | |
| } | |
| .footer a:hover { | |
| color: #e50914; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="wrapper"> | |
| <div class="container"> | |
| <div class="header"> | |
| <a href="{{ site_url }}" class="logo">T<span>PHIM</span>X</a> | |
| </div> | |
| <div class="content"> | |
| <h1>Chào {{ username }} thân mến!</h1> | |
| <p>Bộ phim trong danh sách <strong>Yêu thích</strong> của bạn vừa cập nhật tập phim mới cực nóng hổi trên hệ thống TPHIMX!</p> | |
| <div class="movie-box"> | |
| <div class="movie-title">🎬 {{ movie_name }}</div> | |
| <p style="margin-bottom: 10px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; color: #606060; font-weight: 800;">Các tập phim mới cập nhật:</p> | |
| <ul class="episode-list"> | |
| {{ episode_list }} | |
| </ul> | |
| </div> | |
| <p>Còn chần chừ gì nữa? Hãy chuẩn bị bỏng ngô và click vào nút bên dưới để thưởng thức ngay những tập phim siêu đỉnh chất lượng Full HD vietsub cực mượt thôi nào!</p> | |
| <div class="btn-container"> | |
| <a href="{{ site_url }}/phim/{{ movie_slug }}" class="btn">Xem Phim Ngay</a> | |
| </div> | |
| </div> | |
| <div class="footer"> | |
| <p style="margin-bottom: 10px;">Thư gửi tự động từ hệ thống thông báo <a href="{{ site_url }}">TPHIMX - Tuyệt mỹ từng khung hình</a>.</p> | |
| <p>© {{ copyright_year }} TPHIMX. All rights reserved.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </body> | |
| </html> | |