Newer
Older
<?php
if(!defined('OSTCLIENTINC')) die('Access Denied');
$email=Format::input($_POST['lemail']?$_POST['lemail']:$_GET['e']);
$ticketid=Format::input($_POST['lticket']?$_POST['lticket']:$_GET['t']);
if ($cfg->isClientEmailVerificationRequired())
$button = __("Email Access Link");
<h1><?php echo __('Check Ticket Status'); ?></h1>
<p><?php
echo __('Please provide your email address and a ticket number.');
if ($cfg->isClientEmailVerificationRequired())
echo ' '.__('An access link will be emailed to you.');
else
echo ' '.__('This will sign you in to view your ticket.');
?></p>
<form action="login.php" method="post" id="clientLogin">
<?php csrf_token(); ?>
<div style="display:table-row">
<div class="login-box">
<div><strong><?php echo Format::htmlchars($errors['login']); ?></strong></div>
<label for="email"><?php echo __('E-Mail Address'); ?>:
<input id="email" placeholder="<?php echo __('e.g. john.doe@osticket.com'); ?>" type="text"
name="lemail" size="30" value="<?php echo $email; ?>"></label>
<label for="ticketno"><?php echo __('Ticket Number'); ?>:
<input id="ticketno" type="text" name="lticket" placeholder="<?php echo __('e.g. 051243'); ?>"
size="30" value="<?php echo $ticketid; ?>"></label>
<input class="btn" type="submit" value="<?php echo $button; ?>">
<?php if ($cfg && $cfg->getClientRegistrationMode() !== 'disabled') { ?>
<?php echo __('Have an account with us?'); ?>
<a href="login.php"><?php echo __('Sign In'); ?></a> <?php
if ($cfg->isClientRegistrationEnabled()) { ?>
<?php echo sprintf(__('or %s register for an account %s to access all your tickets.'),
'<a href="account.php?do=create">','</a>');
}
}?>
<?php
if ($cfg->getClientRegistrationMode() != 'disabled'
|| !$cfg->isClientLoginRequired()) {
echo sprintf(
__("If this is your first time contacting us or you've lost the ticket number, please %s open a new ticket %s"),
'<a href="open.php">','</a>');
} ?>