browser-open.html 499 B

123456789101112131415161718
  1. {# This template is not served, but written as a file to open in the browser,
  2. passing the token without putting it in a command-line argument. #}
  3. <!DOCTYPE html>
  4. <html lang="en">
  5. <head>
  6. <meta charset="UTF-8">
  7. <meta http-equiv="refresh" content="1;url={{ open_url }}" />
  8. <title>Opening Jupyter Notebook</title>
  9. </head>
  10. <body>
  11. <p>
  12. This page should redirect you to Jupyter Notebook. If it doesn't,
  13. <a href="{{ open_url }}">click here to go to Jupyter</a>.
  14. </p>
  15. </body>
  16. </html>