diff options
| author | LLLL Colonq <llll@colonq> | 2024-12-03 03:23:27 -0500 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2024-12-03 03:23:27 -0500 |
| commit | 89f75a71dd936ba01030c5a097fa441e57abde5f (patch) | |
| tree | 7e95b86b9d7cc46c4839c1a0e80820ff01662629 | |
| parent | 8b365f8edd1fbbb23675deac8e4f949855cfb1c5 (diff) | |
Fix register link
| -rw-r--r-- | main.css | 5 | ||||
| -rw-r--r-- | templates/auth/index.html | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -358,6 +358,11 @@ a.lcolonq-button-link :active { display: none; } +#lcolonq-auth-register { + font-size: 0.7rem; + color: CanvasText; +} + #lcolonq-auth-error { grid-row: 3; grid-column: 2; diff --git a/templates/auth/index.html b/templates/auth/index.html index fbfa571..3cc6f08 100644 --- a/templates/auth/index.html +++ b/templates/auth/index.html @@ -27,8 +27,8 @@ CONFIG_SUBST </div> <input id="lcolonq-auth-submit" type="submit" value="log in now!!"> </form> - <a href="https://api.colonq.computer/register">click here to register or reset password</a> </div> + <a id="lcolonq-auth-register" href="https://api.colonq.computer/register">click here to register or reset password</a> <div id="lcolonq-auth-error" class="lcolonq-invisible"> login failed. either you used the wrong credentials or something is messed up on my end :3 </div> |
