Skip to content

Commit

Permalink
Fix jupyterhub login template
Browse files Browse the repository at this point in the history
  • Loading branch information
cmd-ntrf committed Jul 14, 2023
1 parent 6513e80 commit 5138b45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions site/profile/templates/jupyterhub/login.html.epp
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ Powered by Magic Castle
<script>
$(".auth-form-body").after(`
<div class="auth-form-footer">
<% if $register_url != '' { -%>
<% if $register_url != undef { -%>
<div style="width: 45%; float:left">
<a href="<%= $register_url %>" target="_new">Create Account</a>
</div>
<% } -%>
<% if $register_url != undef and $reset_pw_url != undef { %> | <% } %>
<% if $reset_pw_url != undef { -%>
<div style="width: 45%; float:right">
<a href="<= $reset_pw_url %>" target="_new">Reset Password</a>
<a href="<%= $reset_pw_url %>" target="_new">Reset Password</a>
</div>
<% } -%>
</div>`
Expand Down

0 comments on commit 5138b45

Please sign in to comment.