trust.phtml 721 B

123456789101112131415161718
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <html>
  3. <head>
  4. <title>Zend OpenID Server Example</title>
  5. </head>
  6. <body>
  7. <p>A site identifying as <a href="<?php echo $this->site;?>"><?php echo $this->site;?></a> has asked us for confirmation that <a href="<?php echo $this->url;?>"><?php echo $this->url;?></a> is your identity URL.</p>
  8. <form name="trust" action="<?php echo $_SERVER['REQUEST_URI']; ?>" method="post">
  9. <?php echo $this->sreg;?>
  10. <input type="checkbox" name="forever">
  11. <label for="forever">forever</label><br>
  12. <input type="hidden" name="openid_action" value="trust">
  13. <br>
  14. <input type="submit" name="allow" value="Allow">
  15. <input type="submit" name="deny" value="Deny">
  16. </form>
  17. </body>
  18. </html>