do registration in separate tab
This commit is contained in:
parent
ca6b399dce
commit
dcabbbf4dd
2 changed files with 3 additions and 3 deletions
|
@ -174,7 +174,7 @@ body {
|
|||
}
|
||||
|
||||
.videos a {
|
||||
color: var(--dark)
|
||||
color: var(--white);
|
||||
}
|
||||
|
||||
.progressbar,
|
||||
|
@ -277,7 +277,7 @@ body {
|
|||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
background: var(--dark);
|
||||
background: var(--black);
|
||||
margin-top: -30px;
|
||||
padding: .5rem
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<a href='/'><img class="header-img" src="/static/img/logo.svg"></a>
|
||||
<%if (username=='!nobody' ) { %>
|
||||
<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 { %>
|
||||
<a class="header-link" href="/client/user?id=<%= username %>">
|
||||
<%= username %>
|
||||
|
|
Loading…
Reference in a new issue