directPage.html 520 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>directPage</title>
  6. </head>
  7. <body>
  8. {% if alertMsg != None %}
  9. <script type="text/javascript">
  10. {% autoescape off %}
  11. alert ('{{alertMsg}}');
  12. {% endautoescape %}
  13. </script>
  14. {% endif %}
  15. {% if dirLink %}
  16. <script type="text/javascript">
  17. window.location.href = '{{dirLink}}';
  18. </script>
  19. {% endif %}
  20. </body>
  21. </html>