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 {
|
.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
|
||||||
}
|
}
|
||||||
|
|
|
@ -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 %>
|
||||||
|
|
Loading…
Reference in a new issue