<%- include('partials/header', { title: 'Shares', user }) %>

Create share

<% if (error) { %>
<%= error %>
<% } %>
Share names are 1-31 chars and must avoid reserved names like private or IPC$.

My shares

<% if (!myShares.length) { %>

You do not own any shares yet.

<% } %>

Shares you can access

<% if (!shares.length) { %>

No shares are available to you yet.

<% } %>
<%- include('partials/footer') %>