Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions service/templates/authorize.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,7 @@
<main class="s-form-page">
<form action="" method="post" id="auth-form" class="s-form s-form--login">
<h1>
<figure>
{% with tenant_id=tenant_id %}
{% include "./branding.html" %}
{% endwith %}
{% with tenant_id="tacc" %}
{% include "./branding.html" %}
{% endwith %}
</figure>
{% include "./content_figure.html" %}
<span>Connect to Tapis</span>
</h1>
<p>The <var>{{ client_display_name }}</var> wants to use <a href="https://tapis-project.org/" target="_blank">Tapis</a> (TACC APIs) service to grant actions on behalf of <var>{{ username }}</var>.</p>
Expand Down
10 changes: 10 additions & 0 deletions service/templates/content_figure.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<figure>
{% if client_display_name != "TACC User Portal" %}
{% with tenant_id=tenant_id %}
{% include "./branding.html" %}
{% endwith %}
{% endif %}
{% with tenant_id="tacc" %}
{% include "./branding.html" %}
{% endwith %}
</figure>
9 changes: 1 addition & 8 deletions service/templates/device-code.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,7 @@
<main class="s-form-page">
<form action="" method="post" class="s-form s-form--login">
<h1>
<figure>
{% with tenant_id=tenant_id %}
{% include "./branding.html" %}
{% endwith %}
{% with tenant_id="tacc" %}
{% include "./branding.html" %}
{% endwith %}
</figure>
{% include "./content_figure.html" %}
<span>Enter User Code</span>
</h1>

Expand Down
9 changes: 1 addition & 8 deletions service/templates/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,7 @@
<main class="s-form-page">
<form action="" method="post" class="s-form s-form--login">
<h1>
<figure>
{% with tenant_id=tenant_id %}
{% include "./branding.html" %}
{% endwith %}
{% with tenant_id="tacc" %}
{% include "./branding.html" %}
{% endwith %}
</figure>
{% include "./content_figure.html" %}
<span>Log In</span>
</h1>
<p>to continue to the <var>{{ client_display_name }}</var></p>
Expand Down
9 changes: 1 addition & 8 deletions service/templates/logout.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,7 @@
<main class="s-form-page">
<form action="" method="post" class="s-form s-form--login">
<h1>
<figure>
{% with tenant_id=tenant_id %}
{% include "./branding.html" %}
{% endwith %}
{% with tenant_id="tacc" %}
{% include "./branding.html" %}
{% endwith %}
</figure>
{% include "./content_figure.html" %}
</h1>

{% if logout_message %}
Expand Down
9 changes: 1 addition & 8 deletions service/templates/mfa.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,7 @@
<main class="s-form-page">
<form action="" method="post" class="s-form s-form--login">
<h1>
<figure>
{% with tenant_id=tenant_id %}
{% include "./branding.html" %}
{% endwith %}
{% with tenant_id="tacc" %}
{% include "./branding.html" %}
{% endwith %}
</figure>
{% include "./content_figure.html" %}
<span>Enter MFA Token</span>
</h1>

Expand Down
9 changes: 1 addition & 8 deletions service/templates/select_idp.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,7 @@
<main class="s-form-page">
<form action="" method="post" class="s-form s-form--login">
<h1>
<figure>
{% with tenant_id=tenant_id %}
{% include "./branding.html" %}
{% endwith %}
{% with tenant_id="tacc" %}
{% include "./branding.html" %}
{% endwith %}
</figure>
{% include "./content_figure.html" %}
<span>Log in to Tapis</span>
</h1>
<p>Select an account to continue</p>
Expand Down
9 changes: 1 addition & 8 deletions service/templates/success.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,7 @@
<main class="s-form-page">
<form action="" method="post" class="s-form s-form--login">
<h1>
<figure>
{% with tenant_id=tenant_id %}
{% include "./branding.html" %}
{% endwith %}
{% with tenant_id="tacc" %}
{% include "./branding.html" %}
{% endwith %}
</figure>
{% include "./content_figure.html" %}
<span>Congrats! Device Code entered successfully. Please return to your application</span>
</h1>

Expand Down
9 changes: 1 addition & 8 deletions service/templates/tenant.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,7 @@
<main class="s-form-page">
<form action="" method="post" class="s-form s-form--login">
<h1>
<figure>
{% with tenant_id=tenant_id %}
{% include "./branding.html" %}
{% endwith %}
{% with tenant_id="tacc" %}
{% include "./branding.html" %}
{% endwith %}
</figure>
{% include "./content_figure.html" %}
<span>Tapis Tenant</span>
</h1>

Expand Down