This commit is contained in:
Omar Najjar 2025-03-31 16:54:27 +11:00
commit e36e71b02c
3 changed files with 1308 additions and 2 deletions

View file

@ -1,6 +1,6 @@
<!DOCTYPE html>
<html lang="en">
<head>
<head>
<meta charset="UTF-8">
<!-- Title -->
<title>RADICAL - The Underground Parliament</title>
@ -221,6 +221,7 @@
<footer>
<p>RADICAL - Direct Democracy Movement 🇦🇺 &copy; 2025</p>
<div class="footer-links">
<a href="/login" class="login-link">Login 🔐</a>
<a href="#about">About Us</a>
<a href="#join">Join The Movement</a>
<a href="#events">Events</a>

1283
login.html Normal file

File diff suppressed because it is too large Load diff

View file

@ -1217,4 +1217,26 @@ a {
.comment-vote-button {
padding: 2px 4px;
}
}
}
.login-link {
display: inline-block;
background-color: var(--primary);
color: var(--dark);
padding: 8px 20px;
border-radius: 0;
font-size: 0.9rem;
margin-top: 20px;
letter-spacing: 1px;
text-transform: uppercase;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
font-weight: 600;
}
.login-link:hover {
background-color: var(--primary-light);
transform: translateY(-2px);
box-shadow: 0 0 15px rgba(255, 0, 153, 0.4);
}