PHP Classes

File: web/SSO/modules/openidProvider/templates/trust.tpl.php

Recommend this page to a friend!
  Classes of william amed   Raptor 2   web/SSO/modules/openidProvider/templates/trust.tpl.php   Download  
File: web/SSO/modules/openidProvider/templates/trust.tpl.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Raptor 2
Framework that takes routes from annotations
Author: By
Last change:
Date: 8 years ago
Size: 921 bytes
 

Contents

Class file image Download
<?php
$this
->includeAtTemplateBase('includes/header.php');
?>

<div class="form">
<?php
$params
= array(
   
'%SITEURL%' => '<code>' . htmlspecialchars($this->data['trustRoot']) . '</code>',
    );
echo(
'<p>' . $this->t('{openidProvider:openidProvider:confirm_question}', $params) . '</p>');
?>
<form method="post" action="?">
<input type="hidden" name="StateID" value="<?php echo htmlspecialchars($this->data['StateID']); ?>" />

<input type="checkbox" name="TrustRemember" value="on" id="remember" />
<label for="TrustRemember"><?php echo($this->t('{openidProvider:openidProvider:remember}')); ?></label>
<br />

<input type="submit" name="TrustYes" value="<?php echo($this->t('{openidProvider:openidProvider:confirm}')); ?>" />
<input type="submit" name="TrustNo" value="<?php echo($this->t('{openidProvider:openidProvider:notconfirm}')); ?>" />

</form>
</div>

<?php
$this
->includeAtTemplateBase('includes/footer.php');
?>