1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
<?php
$this->includeAtTemplateBase('includes/header.php');
?>
<?php
if (isset($this->data['error'])) {
?>
<div style="border-left: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8; background: #f5f5f5">
<img src="/<?php echo $this->data['baseurlpath']; ?>resources/icons/experience/gtk-dialog-error.48x48.png" class="float-l erroricon" style="margin: 15px" alt="" />
<h2><?php echo $this->t('error_header'); ?></h2>
<p class="logintext"><?php echo htmlspecialchars($this->data['error']); ?> </p>
</div>
<?php
}
?>
<h2 style="break: both"><?php echo $this->t('user_pass_header'); ?></h2>
<p><?php echo $this->t('user_pass_text'); ?></p>
<form action="?" method="post" name="f">
<table>
<tr>
<td rowspan="3"><img src="/<?php echo $this->data['baseurlpath']; ?>resources/icons/experience/gtk-dialog-authentication.48x48.png" id="loginicon" alt="" /></td>
<td style="padding: .3em;"><?php echo $this->t('username'); ?></td>
<td><input type="text" tabindex="1" name="username" autocomplete="username"
<?php
if (isset($this->data['username'])) {
echo 'value="'.htmlspecialchars($this->data['username']).'"';
}
?>
/></td>
<td style="padding: .4em;" rowspan="3">
<button type="submit" tabindex="3" id="regularsubmit" class="btn"><?php echo $this->t('login_button'); ?></button>
<input type="hidden" name="RelayState" value="<?php echo htmlspecialchars($this->data['relaystate']); ?>" />
</td>
</tr>
<tr>
<td style="padding: .3em;"><?php echo $this->t('organization'); ?></td>
<td><select name="org" tabindex="2">
<?php
foreach ($this->data['ldapconfig'] as $key => $entry) {
echo '<option '.($key == $this->data['org'] ? 'selected="selected" ' : '').
'value="'.htmlspecialchars($key).'">'.htmlspecialchars($entry['description']).'</option>';
}
?>
</select></td>
</tr>
<tr>
<td style="padding: .3em;"><?php echo $this->t('password'); ?></td>
<td><input type="password" tabindex="2" name="password" autocomplete="current-password" /></td>
</tr>
<tr><td></td><td>
<button type="submit" tabindex="5" id="mobilesubmit" class="btn"><?php echo $this->t('login_button'); ?></button>
</td></tr>
</table>
</form>
<h2 class="logintext"><?php echo $this->t('help_header'); ?>.</h2>
<p class="logintext"><?php echo $this->t('help_text'); ?>!</p>
<?php
$this->includeAtTemplateBase('includes/footer.php');
|