2 $this->includeAtTemplateBase(
'includes/header.php');
6 <?
php if (isset($this->
data[
'error'])) { ?>
7 <div
style=
"border-left: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8; background: #f5f5f5">
8 <img src=
"/<?php echo $this->data['baseurlpath']; ?>resources/icons/experience/gtk-dialog-error.48x48.png" class=
"float-l erroricon" style=
"margin: 15px" alt=
"" />
9 <h2><?
php echo $this->t(
'error_header'); ?></h2>
11 <
p class=
"logintext"><?
php echo htmlspecialchars($this->
data[
'error']); ?> </p>
15 <h2
style=
"break: both"><?
php echo $this->t(
'user_pass_header'); ?></h2>
18 <?
php echo $this->t(
'user_pass_text'); ?>
21 <form action=
"?" method=
"post" name=
"f">
25 <td rowspan=
"3"><img src=
"/<?php echo $this->data['baseurlpath']; ?>resources/icons/experience/gtk-dialog-authentication.48x48.png" id=
"loginicon" alt=
"" /></td>
26 <td style=
"padding: .3em;"><?
php echo $this->t(
'username'); ?></td>
27 <td><
input type=
"text" tabindex=
"1" name=
"username" 28 <?
php if (isset($this->
data[
'username'])) {
29 echo 'value="' . htmlspecialchars($this->
data[
'username']) .
'"';
33 <td style=
"padding: .4em;" rowspan=
"3">
34 <button type=
"submit" tabindex=
"3" id=
"regularsubmit" class=
"btn"><?
php echo $this->t(
'login_button'); ?></button>
35 <
input type=
"hidden" name=
"RelayState" value=
"<?php echo htmlspecialchars($this->data['relaystate']); ?>" />
40 <td style=
"padding: .3em;"><?
php echo $this->t(
'organization'); ?></td>
41 <td><
select name=
"org" tabindex=
"2">
44 foreach ($this->
data[
'ldapconfig'] AS
$key => $entry) {
46 (
$key == $this->
data[
'org'] ?
'selected="selected" ' :
'')
47 .
'value="' . htmlspecialchars(
$key) .
'">' . htmlspecialchars($entry[
'description']) .
'</option>';
55 <td style=
"padding: .3em;"><?
php echo $this->t(
'password'); ?></td>
56 <td><
input type=
"password" tabindex=
"2" name=
"password" /></td>
59 <button type=
"submit" tabindex=
"5" id=
"mobilesubmit" class=
"btn"><?
php echo $this->t(
'login_button'); ?></button>
67 <h2
class=
"logintext"><?
php echo $this->t(
'help_header'); ?>.</h2>
70 <
p class=
"logintext"><?
php echo $this->t(
'help_text'); ?>!</p>
74 <?
php $this->includeAtTemplateBase(
'includes/footer.php'); ?>