This is related to our A-Z Databases which uses the EZproxy links to gain access to subscription databases for the library.
If a user clicks on the edge of the button rather than directly on the text, The initial URL goes from
https://nyit.idm.oclc.org/login?url=https://search.proquest.com/abicomplete?accountid=12917
to
https://nyit.idm.oclc.org/login
This is breaking the user experience so they never get to the database. They get to the EZproxy landing page instead.
How can fix my html code so that this does not happen?
<section class="ftco-section">
<div class="container">
<div class="row justify-content-center">
<div class="popover-header">
<h2 class="heading-section">Login to access library resources.</h2>
</div>
</div>
<div class="row justify-content-center">
<div class="row ""col-md-7 col-lg-5">
<div class="login-wrap p-4 p-md-5">
<div class="align-items-center justify-content-center">
<img src="public/logo.png" title="Proxy Login" alt="Proxy Login">
</div>
<form action="/login" class="login-form" method="post">
<div class="form-group">
<button class="form-control btn-primary rounded px-3"><a href="http://nyit.idm.oclc.org:80/login?auth=shib&url=^U" style="color: #ffffff">Login with Okta Verify</a></button>
</div>
<div class="form-group">
<button class="form-control btn-primary rounded px-3">
<p><a href="http://nyit.idm.oclc.org:80/login?auth=textfile&url=^U" style="color: #ffffff">Login as a Guest.</a></p>
<p> </p>
</div></form>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="popover-footer"><a href="https://www.nyit.edu/policies/privacy_statement" target="_blank">Privacy Statement</a>
</div>
</div>
</section>
Lorraine Botros is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.