Skip to content
Snippets Groups Projects
login-ldapmulti.php 2.41 KiB
Newer Older
<?php 
	$this->includeAtTemplateBase('includes/header.php'); 
?>
		<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>
		<h2 style="break: both"><?php echo $this->t('user_pass_header'); ?></h2>
			<?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" 
					<?php if (isset($this->data['username'])) {
						echo 'value="' . htmlspecialchars($this->data['username']) . '"';
				<td style="padding: .4em;" rowspan="3">
					<input type="submit" tabindex="3" id="regularsubmit" value="<?php echo $this->t('login_button'); ?>" />
					<input type="hidden" name="RelayState" value="<?php echo htmlspecialchars($this->data['relaystate']); ?>" />
				<td style="padding: .3em;"><?php echo $this->t('organization'); ?></td>
					foreach ($this->data['ldapconfig'] AS $key => $entry) {
							($key == $this->data['org'] ? 'selected="selected" ' : '')
							. 'value="' . htmlspecialchars($key) . '">' . htmlspecialchars($entry['description']) . '</option>';
				<td style="padding: .3em;"><?php echo $this->t('password'); ?></td>
				<td><input type="password" tabindex="2" name="password" /></td>
			</tr>
		<tr><td></td><td>
		<input type="submit" tabindex="5" id="mobilesubmit" value="<?php echo $this->t('login_button'); ?>" />
		</td></tr>
		<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'); ?>