From e7350cb5c25fda0513141916a556d42b76bb5a67 Mon Sep 17 00:00:00 2001 From: Jared Hancock <jared@osticket.com> Date: Fri, 23 May 2014 14:24:28 -0500 Subject: [PATCH] Pre fill user email address on sign-in page --- include/client/header.inc.php | 4 +++- include/client/view.inc.php | 4 +++- js/osticket.js | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/include/client/header.inc.php b/include/client/header.inc.php index e6ea209f4..65ce26499 100644 --- a/include/client/header.inc.php +++ b/include/client/header.inc.php @@ -1,5 +1,7 @@ <?php $title=($cfg && is_object($cfg) && $cfg->getTitle())?$cfg->getTitle():'osTicket :: Support Ticket System'; +$signin_url = ROOT_PATH . "login.php" + . ($thisclient ? "?e=".urlencode($thisclient->getEmail()) : ""); header("Content-Type: text/html; charset=UTF-8\r\n"); ?> <!DOCTYPE html> @@ -56,7 +58,7 @@ header("Content-Type: text/html; charset=UTF-8\r\n"); Guest User | <?php } if ($cfg->getClientRegistrationMode() != 'disabled') { ?> - <a href="<?php echo ROOT_PATH; ?>login.php">Sign In</a> + <a href="<?php echo $signin_url; ?>">Sign In</a> <?php } } ?> diff --git a/include/client/view.inc.php b/include/client/view.inc.php index 02e72f4b0..cf7d5ea25 100644 --- a/include/client/view.inc.php +++ b/include/client/view.inc.php @@ -14,7 +14,9 @@ if ($thisclient && $thisclient->isGuest() <div id="msg_info"> <i class="icon-compass icon-2x pull-left"></i> <strong>Looking for your other tickets?</strong></br> - <a href="login.php" style="text-decoration:underline">Sign in</a> or + <a href="<?php echo ROOT_PATH; ?>login.php?e=<?php + echo urlencode($thisclient->getEmail()); + ?>" style="text-decoration:underline">Sign in</a> or <a href="account.php?do=create" style="text-decoration:underline">register for an account</a> for the best experience on our help desk.</div> diff --git a/js/osticket.js b/js/osticket.js index e3089ab2b..f5fa852e8 100644 --- a/js/osticket.js +++ b/js/osticket.js @@ -5,7 +5,7 @@ $(document).ready(function(){ - $("input:not(.dp):visible:enabled:first").focus(); + $('input:not(.dp):visible:enabled:input[value=""]:first').focus(); $('table.list tbody tr:odd').addClass('odd'); //Overlay -- GitLab