20 lines
425 B
Plaintext
20 lines
425 B
Plaintext
% layout 'default',
|
|
% title => $c->board_name . ' - Login';
|
|
% if ($error) {
|
|
<p style="color: red"><%= $error %></p>
|
|
%};
|
|
% if ($message) {
|
|
<p style="color: blue"><%= $message %></p>
|
|
%};
|
|
<form method="post" action='/login'>
|
|
username: <input
|
|
id="username"
|
|
name="username"
|
|
/><br />
|
|
password: <input
|
|
id="password"
|
|
name="password"
|
|
type="password"
|
|
/><br />
|
|
<input type="submit" value="login" />
|
|
</form> |