diff options
Diffstat (limited to 'views/profile.ejs')
| -rw-r--r-- | views/profile.ejs | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/views/profile.ejs b/views/profile.ejs index a79411b..b949794 100644 --- a/views/profile.ejs +++ b/views/profile.ejs @@ -7,9 +7,9 @@ <title>Sin's SS Logger | Profile</title> <link rel="shortcut icon" href="https://i.imgur.com/69mCrs0.jpg" type="image/jpg"> <!-- CSS --> - <link rel="stylesheet" href="css/main.css"> - <link rel="stylesheet" href="css/now-ui-kit.css"> - <link rel="stylesheet" href="css/bootstrap.min.css"> + <link rel="stylesheet" href="/css/main.css"> + <link rel="stylesheet" href="/css/now-ui-kit.css"> + <link rel="stylesheet" href="/css/bootstrap.min.css"> <style> html, @@ -45,13 +45,23 @@ #pink-link:hover { color: rgb(214, 161, 170); } + + #deez-nuts { + cursor: default; + color: white + } + #deez-nuts:hover { + cursor: default; + color: white; + text-decoration: none + } </style> <!-- External Libraries --> <!-- Invisible Scripts --> <script src="https://code.jquery.com/jquery-3.5.0.min.js" integrity="sha256-xNzN2a4ltkB44Mc/Jz3pT4iU1cmeR0FkXs4pru/JxaQ=" crossorigin="anonymous"></script> - <script src="js/now-ui-kit.js"></script> - <script src="js/main.js"></script> + <script src="/js/now-ui-kit.js"></script> + <script src="/js/main.js"></script> <!-- External Libraries --> <!-- Invisible Scripts --> </head> @@ -96,7 +106,9 @@ <div class="col-sm"></div> <div class="col-sm"> <h4 class="pt-4" id="white-txt"> - <%= name %> + <a href="https://www.youtube.com/watch?v=ZClu_I6U6aM" id="deez-nuts"> + <%= name %> + </a> </h4> <form action="/logout" method="POST" class="my-4"> <div class="form-group"> |