404.html 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {% extends "base.html" %}
  2. {% block title %}Enlace No Encontrado - Renako{% endblock %}
  3. {% block content %}
  4. <div class="min-h-96 flex items-center justify-center">
  5. <div class="text-center max-w-md mx-auto">
  6. <div class="mb-8">
  7. {% if error_message and 'expirado' in error_message %}
  8. <i class="fas fa-clock text-8xl text-orange-300 mb-4"></i>
  9. <h1 class="text-6xl font-bold text-gray-900 mb-4">⏰</h1>
  10. <h2 class="text-2xl font-semibold text-gray-700 mb-4">Enlace Expirado</h2>
  11. <p class="text-gray-600 mb-8">
  12. Este enlace ha expirado y ya no está disponible. Los enlaces tienen una duración limitada por seguridad.
  13. </p>
  14. {% else %}
  15. <i class="fas fa-unlink text-8xl text-gray-300 mb-4"></i>
  16. <h1 class="text-6xl font-bold text-gray-900 mb-4">404</h1>
  17. <h2 class="text-2xl font-semibold text-gray-700 mb-4">Enlace No Encontrado</h2>
  18. <p class="text-gray-600 mb-8">
  19. Lo sentimos, el enlace que estás buscando no existe o ha sido eliminado.
  20. </p>
  21. {% endif %}
  22. </div>
  23. <div class="space-y-4">
  24. <a
  25. href="{{ url_for('index') }}"
  26. class="inline-flex items-center px-6 py-3 bg-primary hover:bg-secondary text-white font-semibold rounded-lg transition-all duration-200 transform hover:scale-105"
  27. >
  28. <i class="fas fa-home mr-2"></i>
  29. Volver al Inicio
  30. </a>
  31. <div class="text-sm text-gray-500">
  32. <p>¿Necesitas ayuda? Verifica que el enlace esté escrito correctamente.</p>
  33. </div>
  34. </div>
  35. <!-- Sugerencias -->
  36. <div class="mt-12 bg-gray-50 rounded-lg p-6">
  37. <h3 class="text-lg font-semibold text-gray-800 mb-4">
  38. <i class="fas fa-lightbulb mr-2 text-yellow-500"></i>
  39. Posibles causas:
  40. </h3>
  41. <ul class="text-left text-sm text-gray-600 space-y-2">
  42. <li class="flex items-start">
  43. <i class="fas fa-circle text-xs mt-2 mr-2 text-gray-400"></i>
  44. El enlace fue eliminado por su creador
  45. </li>
  46. <li class="flex items-start">
  47. <i class="fas fa-circle text-xs mt-2 mr-2 text-gray-400"></i>
  48. El código del enlace fue escrito incorrectamente
  49. </li>
  50. <li class="flex items-start">
  51. <i class="fas fa-circle text-xs mt-2 mr-2 text-gray-400"></i>
  52. El enlace ha expirado o nunca existió
  53. </li>
  54. </ul>
  55. </div>
  56. </div>
  57. </div>
  58. {% endblock %}