Source link on login screen

main2
Bob Mottram 2019-10-03 15:43:47 +01:00
parent 121665b46a
commit 903677549f
2 changed files with 81 additions and 70 deletions

View File

@ -134,6 +134,11 @@ span.psw {
width: 100%;
font-size: var(--font-size);
}
.license {
float: right;
margin: 0% 1%;
width: 10%;
}
}
@media screen and (max-width: 1000px) {
@ -173,4 +178,9 @@ span.psw {
width: 100%;
font-size: var(--font-size-mobile);
}
.license {
float: right;
margin: 0% 1%;
width: 20%;
}
}

View File

@ -743,6 +743,7 @@ def htmlLogin(translate: {},baseDir: str) -> str:
registerButtonStr+loginButtonStr+ \
' </div>' \
'</form>'
loginForm+='<a href="https://gitlab.com/bashrc2/epicyon"><img class="license" src="/icons/agpl.png" /></a>'
loginForm+=htmlFooter()
return loginForm