fix css for not logged page.

This commit is contained in:
sweatshirt0 2023-02-20 20:21:04 -05:00
parent cc6b087b45
commit 74689a11bb
2 changed files with 8 additions and 1 deletions

View File

@ -11,6 +11,9 @@
<a class="logged-home-link" href="/home">Home</a> <a class="logged-home-link" href="/home">Home</a>
<a class="logout-link" href="/unlog">Log Out</a> <a class="logout-link" href="/unlog">Log Out</a>
</div> </div>
<div class="home-content-wrapper">
<h1 class="logged-title-message">Thank you for loggin in, friend.</h1>
</div>
</div> </div>
</body> </body>
</html> </html>

View File

@ -3,13 +3,17 @@
<head> <head>
<meta charset="URF-8" /> <meta charset="URF-8" />
<title>Please Log In First.</title> <title>Please Log In First.</title>
</link rel="stylesheet" type="text/css" href="./../styles/styles.css" /> <link rel="stylesheet" type="text/css" href="i./../styles/styles.css" />
</head> </head>
<body> <body>
<div class="whole-wrapper"> <div class="whole-wrapper">
<div class="nav-wrapper"> <div class="nav-wrapper">
<a class="home-link" href="/">Home</a> <a class="home-link" href="/">Home</a>
</div> </div>
<div class="not-logged-content-wrapper">
<h1 class="not-logged-title">You need to log in first. Please go back and submit some valid information.</h1>
<p class="not-logged-message">If you need to sign up, you can do so; <a class="signup-link-land2" href="/signup">here</a>.
</div>
</div> </div>
</body> </body>
</html> </html>