diff --git a/ui/src/views/AuthenticationView.vue b/ui/src/views/AuthenticationView.vue index 651ffe9..3060a59 100644 --- a/ui/src/views/AuthenticationView.vue +++ b/ui/src/views/AuthenticationView.vue @@ -4,15 +4,16 @@ Page opened! Check your default browser for the page, and follow the instructions there to link your patreon account. When you are done, enter the username and token below. -

+ The Early Access release channel lets you try out the latest experimental features and fixes, before they are merged into yuzu. This channel includes all regular yuzu daily updates, plus these exclusive features. To be an Early Access member, you must be a Patreon Early Access Subscriber. -

- If you are a subscriber, click here to link your yuzu-emu.org account -

- If you are not already a subscriber, click here to become one -

+ +
+ If you are a subscriber, click here to link your yuzu-emu.org account +
+ If you are not already a subscriber, click here to become one +

@@ -77,6 +78,9 @@ export default { } }, computed: { + show_header: function() { + return !this.browser_opened && !this.verification_opened; + }, invalid_login: function() { return this.verification_opened && !this.$root.is_authenticated; },