<html>
<head>
  <title>Allow Authorization?</title>
</head>
<body style='background-color: #CCCCFF;'>
  <h1>Allow Authorization?</h1>
  <table>
    <tr><td>Identity:</td><td><%= h @identity %></td></tr>
    <tr><td>Trust Root:</td><td><%= h @trust_root %></td></tr>
  </table>
  <form method="POST" action="<%= url_for :action=>'decide' %>">
    <input type="hidden" name="openid.identity" value="<%= h @identity %>" />
    <input type="hidden" name="openid.trust_root" value="<%= h @trust_root %>" />
    <input type="hidden" name="openid.fail_to" value="<%= @fail_to %>" />
    <input type="hidden" name="openid.success_to" value="<%= @success_to %>" />
    <input type="submit" name="yes" value="yes" />
    <input type="submit" name="no" value="no" />
  </form>
</body>
</html>
