This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
simplesamlphp/templates/logout.php

20 lines
516 B
PHP

<?php
$this->data['header'] = $this->t('{logout:title}');
$this->includeAtTemplateBase('includes/header.php');
echo('<h2>' . $this->data['header'] . '</h2>');
echo('<p>' . $this->t('{logout:logged_out_text}') . '</p>');
if($this->getTag($this->data['text']) !== NULL) {
$this->data['text'] = $this->t($this->data['text']);
}
echo('<p>[ <a href="' . htmlspecialchars($this->data['link']) . '">' .
htmlspecialchars($this->data['text']) . '</a> ]</p>');
$this->includeAtTemplateBase('includes/footer.php');
?>