BeastBB/templates/main/Index.html.ep

8 lines
251 B
Plaintext
Raw Normal View History

2021-06-06 00:19:57 +02:00
<h1>Welcome to BeastBB <%= defined $user ? $user->Username : 'anonymous user' %>.</h1>
% if (!defined $user) {
<p><a href="/login">Login</a> <a href="/signup">Signup</a>
% }
2021-06-06 00:41:27 +02:00
% if (defined $error) {
<p style="color: red;"><%= $error %></p>
% }