Skip to content
Snippets Groups Projects
skip.html 1.04 KiB
Newer Older
<!doctype html>
<title>OAS authentication service</title>
<div style='margin: 0 auto ; width: 350px; padding:20px; border-style:solid; border-color:#6c757d; border-width: 1px; background-color: #f8f9fa; font-family: "Segoe UI", Roboto; font-family: "Helvetica Neue", Arial; font-family: "Noto Sans", sans-serif;'>
  {% if logo %}
  <div style="position:relative; width: 350px; height:100px">
        <img style="overflow: auto; top: 0; left: 0; bottom: 0; right: 0; position: absolute; margin: auto;max-width: 300px; max-height: 100px" src="{{logo}}" alt="Logo of application"></img>
  </div>
  {% endif %}
  <h1>Log in to {{ application_name }}</h1>
  <div style="width: 100%; margin-bottom: 5px; overflow: auto">
      <div style="width:60%; float:left"><button onclick="window.location.href = '/login?login_challenge={{ challenge }}&skip=true';">Continue with {{ username }}</button></div>
      <div style="width:40%; float:left;"><button onclick="window.location.href = '/login?login_challenge={{ challenge }}&logout=true';">Logout</button></div>
  </div>
</div>