<%~ include('./partials/head', { title: 'Settings' }) %> <%~ include('./partials/nav', { nav: 'settings' }) %> <% const hasEmail = !!it.account.email_hash; const createdDate = new Date(it.account.created_at).toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' }); %>

Settings

Account

<%= it.loginKey %>

<%= createdDate %>

Recovery Email

Used for account recovery only. Stored as a one-way hash — we can't read it.

Sub-Keys

Create separate keys for different apps, scripts, or teammates.

<% if (it.apiKeys.length === 0) { %>

No sub-keys yet.

<% } else { %> <% it.apiKeys.forEach(function(k) { %>

<%= k.label %>

<%= k.key %>

created <%= new Date(k.created_at).toLocaleDateString() %> <%~ k.last_used_at ? '· last used ' + it.timeAgoSSR(k.last_used_at) : '· never used' %>

<% }) %> <% } %>
<%~ include('./partials/foot') %>