<html>
<head>
  <title>Log In!</title>
</head>
<body style='background-color: #CCCCFF;'>
  <h1>Log In!</h1>
  <p>No password used because this is just an example.</p>
  <%= start_form_tag %>
    <input type="hidden" name="action" value="login" />
    <input type="hidden" name="fail_to" value="<%= params[:fail_to] or url_for(:action=>'main') %>" />
    <input type="hidden" name="success_to" value="<%= params[:success_to] or url_for(:action=>'loggedin') %>" />
    <input type="text" name="user" value="" />
    <input type="submit" name="submit" value="Log In" />
    <input type="submit" name="cancel" value="Cancel" />
  <%= end_form_tag %>
</body>
</html>
