Skip to content
Snippets Groups Projects
Commit 70bbba5b authored by Demian Katz's avatar Demian Katz
Browse files

jquerymobile ChoiceAuth theming.

parent 6e0222b9
No related merge requests found
Showing
with 52 additions and 22 deletions
<label for="login_username"><?=$this->transEsc('Username')?>:</label> <? $account = $this->auth()->getManager(); ?>
<input id="login_username" type="text" name="username" value="<?=$this->escapeHtml($this->request->get('username'))?>"/> <h3><?=$this->transEsc('Login')?></h3>
<label for="login_password"><?=$this->transEsc('Password')?>:</label> <?=$this->flashmessages()?>
<input id="login_password" type="password" name="password"/> <? $sessionInitiator = $account->getSessionInitiator($this->serverUrl($this->url('myresearch-home'))); ?>
<? if (!$sessionInitiator): // display default login form if no login URL provided ?>
<form method="post" action="<?=$this->url('myresearch-home')?>" name="loginForm" data-ajax="false">
<input type="hidden" name="auth_method" value="<?=$this->auth()->getActiveAuthMethod()?>" />
<div data-role="fieldcontain">
<?=$this->auth()->getLoginFields()?>
</div>
<div data-role="fieldcontain">
<input type="submit" name="processLogin" value="<?=$this->transEsc('Login')?>"/>
</div>
</form>
<? if ($account->supportsCreation()): ?>
<a rel="external" data-role="button" class="new_account" href="<?=$this->url('myresearch-account')?>?auth_method=<?=$this->auth()->getActiveAuthMethod()?>"><?=$this->transEsc('Create New Account')?></a>
<? endif; ?>
<? else: ?>
<a rel="external" data-role="button" href="<?=$this->escapeHtml($sessionInitiator)?>"><?=$this->transEsc("Institutional Login")?></a>
<? endif; ?>
<h3><?=$this->transEsc('Login')?></h3>
\ No newline at end of file
<label for="login_username"><?=$this->transEsc('Username')?>:</label>
<input id="login_username" type="text" name="username" value="<?=$this->escapeHtml($this->request->get('username'))?>"/>
<label for="login_password"><?=$this->transEsc('Password')?>:</label>
<input id="login_password" type="password" name="password"/>
<h3><?=$this->transEsc('Institutional Login')?></h3>
<p><?=$this->transEsc('institutional_login_desc')?></p>
\ No newline at end of file
<p><?=$this->transEsc('choose_login_method')?></p>
<div id="authcontainer">
<? foreach ($this->auth()->getManager()->getAuthClasses() as $loop=>$class):?>
<div class="authmethod<?=$loop?>">
<? $this->auth()->setActiveAuthClass($class) ?>
<?=$this->auth()->getLoginDesc() ?>
<?=$this->auth()->getLogin() ?>
<? $this->auth()->setActiveAuthClass('ChoiceAuth') ?>
</div>
<? endforeach ?>
</div>
<div class="clearer"></div>
<h3><?=$this->transEsc('Local Login')?></h3>
<p><?=$this->transEsc('local_login_desc')?></p>
\ No newline at end of file
<h3><?=$this->transEsc('Catalog Login')?></h3>
<p><?=$this->transEsc('catalog_login_desc')?></p>
\ No newline at end of file
<h3><?=$this->transEsc('Institutional Login')?></h3>
<p><?=$this->transEsc('institutional_login_desc')?></p>
\ No newline at end of file
<? $account = $this->auth()->getManager(); ?>
<? $sessionInitiator = $account->getSessionInitiator($this->serverUrl($this->url('myresearch-home'))); ?>
<a href="<?=$this->escapeHtml($sessionInitiator)?>"><?=$this->transEsc("Institutional Login")?></a>
<h3><?=$this->transEsc('Institutional Login')?></h3>
<p><?=$this->transEsc('institutional_login_desc')?></p>
\ No newline at end of file
...@@ -23,24 +23,7 @@ ...@@ -23,24 +23,7 @@
<? endif; ?> <? endif; ?>
<? if (!$hideLogin): ?> <? if (!$hideLogin): ?>
<h3><?=$this->transEsc('Login')?></h3> <?=$this->auth()->getLogin()?>
<?=$this->flashmessages()?>
<? $sessionInitiator = $account->getSessionInitiator($this->serverUrl($this->url('myresearch-home'))); ?>
<? if (!$sessionInitiator): // display default login form if no login URL provided ?>
<form method="post" action="<?=$this->url('myresearch-home')?>" name="loginForm" data-ajax="false">
<div data-role="fieldcontain">
<?=$this->auth()->getLoginFields()?>
</div>
<div data-role="fieldcontain">
<input type="submit" name="processLogin" value="<?=$this->transEsc('Login')?>"/>
</div>
</form>
<? if ($account->supportsCreation()): ?>
<a rel="external" data-role="button" class="new_account" href="<?=$this->url('myresearch-account')?>"><?=$this->transEsc('Create New Account')?></a>
<? endif; ?>
<? else: ?>
<a rel="external" data-role="button" href="<?=$this->escapeHtml($sessionInitiator)?>"><?=$this->transEsc("Institutional Login")?></a>
<? endif; ?>
<? endif; ?> <? endif; ?>
</div> </div>
<?=$this->mobileMenu()->footer()?> <?=$this->mobileMenu()->footer()?>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment