KOK - MANAGER
Edit File: success.html
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"/> <title>Submission Successful</title> <meta name="viewport" content="width=device-width, initial-scale=1"/> <style> body { font-family: 'Segoe UI', Tahoma, sans-serif; background: #f9fafb; color: #222; max-width: 800px; margin: 2rem auto; padding: 1rem; } h2 { color: #16a34a; } .card { background: #fff; padding: 1.5rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); } ul { padding-left: 1.2rem; } a { color: #4f46e5; text-decoration: none; } a:hover { text-decoration: underline; } .btn { display: inline-block; margin-top: 1.5rem; padding: 0.8rem 1.2rem; background: #4f46e5; color: white; border-radius: 8px; font-weight: 600; text-decoration: none; transition: background 0.3s; } .btn:hover { background: #3730a3; } </style> </head> <body> <div class="card"> <h2>✅ Submitted! Your entry has been recorded.</h2> <p><strong>Audio uploaded:</strong></p> <ul> {% for l in audio_links %} <li><a href="{{l}}" target="_blank">{{l}}</a></li> {% endfor %} </ul> {% if website_link %} <p><strong>Website link:</strong> <a href="{{website_link}}" target="_blank">{{website_link}}</a></p> {% endif %} <a href="/" class="btn">Submit another</a> </div> </body> </html>