tilde.news/app/views/signup/index.html.erb

19 lines
598 B
Plaintext

<div class="box wide">
<% if Rails.application.open_signups? %>
<p>
Not a user yet? <a href="/invitations/open">Sign up here</a>.
</p>
<% else %>
<p>
Signup is currently by invitation only to combat spam and increase
accountability. If you know <%= link_to 'a current user', users_tree_path %>
of the site, ask them for an invitation, or
<% if Rails.application.allow_invitation_requests? %>
<a href="/invitations/request">request one publicly</a>.
<% else %>
request one in <a href="/chat">chat</a>.
<% end %>
</p>
<% end %>
</div>