From 60c6eb4bc249d3aeab5ea7402f542ff1a4ba254d Mon Sep 17 00:00:00 2001 From: Jared Hancock <jared@osticket.com> Date: Thu, 28 Aug 2014 11:16:52 -0500 Subject: [PATCH] auth: Always show agent login link Previously, if the enduser registration mode were set to something other than `public`, the agent sign-in link would not be shown. Now, the agent sign-in link is always shown on the enduser sign-in page. --- include/client/login.inc.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/client/login.inc.php b/include/client/login.inc.php index e5ca83021..7d5f9e36d 100644 --- a/include/client/login.inc.php +++ b/include/client/login.inc.php @@ -51,13 +51,14 @@ if (count($ext_bks)) { } if ($cfg && $cfg->isClientRegistrationEnabled()) { if (count($ext_bks)) echo '<hr style="width:70%"/>'; ?> + <div style="margin-bottom: 5px"> Not yet registered? <a href="account.php?do=create">Create an account</a> - <br/> - <div style="margin-top: 5px;"> + </div> +<?php } ?> + <div> <b>I'm an agent</b> — <a href="<?php echo ROOT_PATH; ?>scp">sign in here</a> </div> -<?php } ?> </div> </div> </form> -- GitLab