Update formatting of profile login buttons and display

This commit is contained in:
2024-10-04 17:44:10 -04:00
parent 20a3c0c7df
commit ab50826d31
2 changed files with 17 additions and 20 deletions

View File

@ -33,10 +33,10 @@ pub fn Profile() -> impl IntoView {
#[component]
pub fn DropDownNotLoggedIn() -> impl IntoView {
view! {
<div class="dropdown-not-logged">
<h1>Not Logged in!</h1>
<div class="dropdown-logged">
<h1>Not Logged In</h1>
<a href="/login"><button class="auth-button">Log In</button></a>
<a href="/signup"><button class="auth-button">Sign up</button></a>
<a href="/signup"><button class="auth-button">Sign Up</button></a>
</div>
}
}