19 lines
416 B
Plaintext
19 lines
416 B
Plaintext
% layout 'default', title => 'CharmBoard - 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> |