Files
once-campfire/app/views/rooms/show/_invitation.html.erb
Kevin McConnell df76a227dc Hello world
First open source release of Campfire 🎉
2025-08-21 09:31:59 +01:00

20 lines
732 B
Plaintext

<% if @room == Room.original && !@room.messages.paged? %>
<div id="system_welcome" class="message message--formatted txt-align-center center">
<div class="message__body center">
<div class="message__body-content position-relative">
<%= account_logo_tag style: "center margin-block-end txt-large" %>
<div class="flex align-center gap">
<div class="system-welcome--translation">
<%= translation_button(:invite_message) %>
</div>
<p>
<strong>Welcome to Campfire</strong><br>
To invite people to chat, share the join link below.
</p>
</div>
<%= render "accounts/invite" %>
</div>
</div>
</div>
<% end %>