2 $this->
data[
'header'] = $this->t(
'{multiauth:multiauth:select_source_header}');
4 $this->includeAtTemplateBase(
'includes/header.php');
7 <h2><?php echo $this->t(
'{multiauth:multiauth:select_source_header}'); ?></h2>
9 <p><?php echo $this->t(
'{multiauth:multiauth:select_source_text}'); ?></p>
11 <form action=
"<?php echo htmlentities($_SERVER['PHP_SELF']); ?>" method=
"get">
12 <input type=
"hidden" name=
"AuthState" value=
"<?php echo htmlspecialchars($this->data['authstate']); ?>" />
16 echo
'<li class="' . htmlspecialchars($source[
'css_class']) .
' authsource">';
17 if ($source[
'source'] === $this->
data[
'preferred']) {
18 $autofocus =
' autofocus="autofocus"';
22 $name =
'src-' . base64_encode($source[
'source']);
23 echo
'<input type="submit" name="' . htmlspecialchars(
$name) .
'"' . $autofocus .
' ' .
24 'id="button-' . htmlspecialchars($source[
'source']) .
'" ' .
25 'value="' . htmlspecialchars($this->t($source[
'text'])) .
'" />';
31 <?php $this->includeAtTemplateBase(
'includes/footer.php');