HNS Login
{% if user %}
You are currently logged in as {{ user }}/
Log Out
{% for client in clients %}
Client Info
{% if user.id == 1 %}
client_owner: {{ client.user_id }}{% endif %}
{%- for key in client.client_info %}
{{ key }}: {{ client.client_info[key] }}
{%- endfor %}
Client Metadata
{%- for key in client.client_metadata %}
{{ key }}: {{ client.client_metadata[key] }}
{%- endfor %}
{% endfor %}
{% if user.id == 1 %}
{% for user_tmp in users %}
User Info
{%- for key in user_tmp %}
{{ key }}: {{ user_tmp[key] }}
{%- endfor %}
{% endfor %}
{% endif %}
Want to implement OAuth?
Contact Nathan.Woodburn/ on any social media platform
{% else %}
Login with your Handshake domain
{% if address %}
Logged in as {{address}}
Select a HNS.ID domain to log in with
{% else %}
{% endif %}
{% endif %}