mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 06:21:27 +00:00
Update landing nav, fix curated onboarding state
This commit is contained in:
parent
8355d5d00c
commit
cae26c666d
1 changed files with 40 additions and 27 deletions
|
@ -10,7 +10,7 @@
|
|||
<div class="my-2 my-lg-0">
|
||||
<a class="btn btn-outline-light btn-sm rounded-pill font-weight-bold px-4" href="/login">Login</a>
|
||||
|
||||
<a v-if="config.open_registration" class="ml-2 btn btn-primary btn-primary-alt btn-sm rounded-pill font-weight-bold px-4" href="/register">Sign up</a>
|
||||
<a v-if="config.open_registration || config.curated_onboarding" class="ml-2 btn btn-primary btn-primary-alt btn-sm rounded-pill font-weight-bold px-4" :href="regLink">Sign up</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
@ -24,6 +24,19 @@
|
|||
name: window.pfl.name,
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
regLink: {
|
||||
get() {
|
||||
if(this.config.open_registration) {
|
||||
return '/register';
|
||||
}
|
||||
|
||||
if(this.config.curated_onboarding) {
|
||||
return '/auth/sign_up';
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
$(window).scroll(function(){
|
||||
$('nav').toggleClass('bg-black', $(this).scrollTop() > 20);
|
||||
|
|
Loading…
Reference in a new issue