{% extends "layout.html" %} {% block title %}Copy Paste Token{% endblock %} {% block content %}

{{ userdata['username'] }}

Copy Paste Token

This copy paste token is good for one use in the next five minutes.

{{ copy_paste_token }}

If you need to authenticate a Jupyter Notebook session (for example, a Terra Jupyter Notebook), copy and paste this into your notebook:

from hailtop.auth import copy_paste_login; copy_paste_login('{{ copy_paste_token }}')

If you need to authenticate from a terminal, copy and paste this into your terminal:

hailctl auth copy-paste-login "{{ copy_paste_token }}"
{% endblock %}