8 lines
248 B
Plaintext
8 lines
248 B
Plaintext
<% if just_logged_in then %>
|
|
<h1>Logged in successfully.</h1>
|
|
<% end %>
|
|
<h1><%= user.username %></h1>
|
|
<% if user:is_guest() then %>
|
|
<h2>You are a guest. An administrator needs to approve your account before you will be able to post.</h2>
|
|
<% end %>
|