12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {% extends 'layout.html' %}
- {% block content %}
- <div class="row justify-content-center mt-5">
- <div class="col-sm-12 col-md-8 col-lg-6">
- <div class="card shadow">
- <div class="card-body">
- {% if context.reset_url == False %}
- ILS Reset URL not valid. Please contact your system administrator.
- {% else %}
- {% if context.reset == False %}
- <p class="lead">
- ILS passwords expire every 90 days. Be sure to complete this entire process to ensure your password is reset correctly.
- </p>
- <ol>
- <li class="mb-3">Provide your ILS account username.</li>
- <li class="mb-3">Click on the "Start ILS Password Reset" button to be directed to the Lynx Terminal web page.</li>
- <li>Log into the {{ context.domain }} terminal web page using your current credentials.</li>
- <li class="mb-3">Once logged in, click on the link to reset your password.</li>
- <li class="mb-3">Complete the required form to complete the password reset process.
- <br><b>Note:</b> <i>domain/user name</i> field needs to be in the following format: <code style="display:block; padding-top:10px; font-size:1.25em;">{{ context.domain }}/username</code></li>
- </ol>
- <div class="text-center">
- <form action="/" method="post">
- {% if context.error %}
- <div class="text-danger text-center">
- {{ context.error }}
- </div>
- {% endif %}
- <div class="mb-3 text-center mt-2">
- <input type="text" class="form-control" id="username" name="username" placeholder="ILS user account" required>
- </div>
- <div class="text-center mb-1">
- <button type="submit" class="btn btn-primary w-100">Start ILS Password Reset</button>
- </div>
- </form>
- </div>
- {% else %}
- <div class="text-center">
- <h3>Steps to complete</h3>
- <p>A new tab should have opened to the {{ context.domain }} terminal website. If not <a href="{{ context.reset_url }}" target="_blank">here</a> to open the terminal page to complete the following steps:</p>
- </div>
- <ol>
- <li class="mb-3">Log into the {{ context.domain }} terminal web page using your current credentials.</li>
- <li class="mb-3">Once logged in, click on the link to reset your password.</li>
- <li class="mb-3">Complete the required form to complete the password reset process.
- <br><b>Note:</b> <i>domain/user name</i> field needs to be in the following format: <code style="display:block; padding-top:10px; font-size:1.25em;">{{ context.domain }}/username</code></li>
- </ol>
- {% endif %}
- {% endif %}
- </div>
- </div>
- </div>
- </div>
- {% endblock %}
|