Skip to content
Open
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
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
1 change: 1 addition & 0 deletions service/templates/authorize.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ <h1>
</label>
</div>
</form>
{% include "./content_footer.html" %}
</main>
{% endblock %}

Expand Down
21 changes: 21 additions & 0 deletions service/templates/content_footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<style>
.powered_by {
/* To move non-image links to the left */
margin-left: auto;
}
</style>
<footer>
<a href="https://tacc.utexas.edu/about/security-and-compliance/">
Security
</a>
<a href="https://tacc.utexas.edu/use-tacc/user-policies/">
Policies
</a>
{% if client_display_name == "TACC User Portal" %}

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note

This is a temporary solution to reduce testing surface area of this change to just TUP, who has expedited request for this.

<a href="https://tapis-project.org" target="_blank" class="powered_by">
Powered by:
<img src="https://dev.develop.tapis.io/v3/oauth2/authorize/tapis.png"
alt="Tapis logo" title="Tapis (TACC APIs)" height="50px">
</a>
{% endif %}
</footer>
1 change: 1 addition & 0 deletions service/templates/device-code.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,6 @@ <h1>
<button type="submit">Submit</button>
</footer>
</form>
{% include "./content_footer.html" %}
</main>
{% endblock %}
9 changes: 1 addition & 8 deletions service/templates/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,7 @@ <h1>
{% endif %}
</nav>
</form>
<footer>
<a href="https://tacc.utexas.edu/about/security-and-compliance/">
Security
</a>
<a href="https://tacc.utexas.edu/use-tacc/user-policies/">
Policies
</a>
</footer>
{% include "./content_footer.html" %}
</main>
{% endblock %}

Expand Down
1 change: 1 addition & 0 deletions service/templates/mfa.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ <h1>
<button type="submit" name="action" value="submit">Submit</button>
</footer>
</form>
{% include "./content_footer.html" %}
</main>
{% endblock %}

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 @@ -42,14 +42,7 @@ <h1>
</nav>

</form>
<footer>
<a href="https://tacc.utexas.edu/about/security-and-compliance/">
Security
</a>
<a href="https://tacc.utexas.edu/use-tacc/user-policies/">
Policies
</a>
</footer>
{% include "./content_footer.html" %}

</main>
{% endblock %}
Expand Down
1 change: 1 addition & 0 deletions service/templates/tenant.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ <h1>
<input type="hidden" name="client_state" value="{{ client_state }}">

</form>
{% include "./content_footer.html" %}
</main>

{% endblock %}