do registration in separate tab

This commit is contained in:
biglyderv 2024-11-25 14:12:44 -05:00
parent ca6b399dce
commit dcabbbf4dd
2 changed files with 3 additions and 3 deletions

View file

@ -174,7 +174,7 @@ body {
} }
.videos a { .videos a {
color: var(--dark) color: var(--white);
} }
.progressbar, .progressbar,
@ -277,7 +277,7 @@ body {
flex-direction: row; flex-direction: row;
flex-wrap: wrap; flex-wrap: wrap;
align-items: center; align-items: center;
background: var(--dark); background: var(--black);
margin-top: -30px; margin-top: -30px;
padding: .5rem padding: .5rem
} }

View file

@ -2,7 +2,7 @@
<a href='/'><img class="header-img" src="/static/img/logo.svg"></a> <a href='/'><img class="header-img" src="/static/img/logo.svg"></a>
<%if (username=='!nobody' ) { %> <%if (username=='!nobody' ) { %>
<a class="header-link" href="/client/login">Login</a> <a class="header-link" href="/client/login">Login</a>
<a class="header-link" href="/client/register">Register</a> <a class="header-link" target="_blank" href="/client/register">Register</a>
<% } else { %> <% } else { %>
<a class="header-link" href="/client/user?id=<%= username %>"> <a class="header-link" href="/client/user?id=<%= username %>">
<%= username %> <%= username %>