website: route early-access signups to Slack alpha-access channel#391
Conversation
After submitting the waitlist email, the success state now points people to join the Slack workspace and the #alpha-access channel - that's where alpha builds drop and access actually happens. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
Your free trial has ended. If you'd like to continue receiving code reviews, you can add a payment method here.
There was a problem hiding this comment.
Code Review
This pull request updates the early access confirmation message on the website to provide links to the Slack workspace and the #alpha-access channel. The review feedback recommends enhancing security and privacy by using 'rel="noopener noreferrer"' instead of just 'rel="noopener"' for the external links opening in a new tab.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| } | ||
| emailInput.value = ''; | ||
| status.textContent = "You're on the list."; | ||
| status.innerHTML = "You're on the list. <strong>Access happens in Slack.</strong> <a href=\"https://join.slack.com/t/off-grid-mobile/shared_invite/zt-3w2utgk0w-EDiDZBq6KmSZZwEw5Tkhnw\" target=\"_blank\" rel=\"noopener\">Join the workspace</a>, then head to <a href=\"https://off-grid-mobile.slack.com/archives/C0B0GBSCT88\" target=\"_blank\" rel=\"noopener\">#alpha-access</a> - that's where builds drop."; |
There was a problem hiding this comment.
For security reasons, when using target="_blank" on anchor tags, it is recommended to use rel="noopener noreferrer" instead of just rel="noopener" to protect against reverse tabnabbing in older browsers and ensure better privacy by not leaking referrer information.
| status.innerHTML = "You're on the list. <strong>Access happens in Slack.</strong> <a href=\"https://join.slack.com/t/off-grid-mobile/shared_invite/zt-3w2utgk0w-EDiDZBq6KmSZZwEw5Tkhnw\" target=\"_blank\" rel=\"noopener\">Join the workspace</a>, then head to <a href=\"https://off-grid-mobile.slack.com/archives/C0B0GBSCT88\" target=\"_blank\" rel=\"noopener\">#alpha-access</a> - that's where builds drop."; | |
| status.innerHTML = "You're on the list. <strong>Access happens in Slack.</strong> <a href=\"https://join.slack.com/t/off-grid-mobile/shared_invite/zt-3w2utgk0w-EDiDZBq6KmSZZwEw5Tkhnw\" target=\"_blank\" rel=\"noopener noreferrer\">Join the workspace</a>, then head to <a href=\"https://off-grid-mobile.slack.com/archives/C0B0GBSCT88\" target=\"_blank\" rel=\"noopener noreferrer\">#alpha-access</a> - that's where builds drop."; |
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #391 +/- ##
==========================================
- Coverage 81.82% 81.81% -0.01%
==========================================
Files 241 241
Lines 12835 12835
Branches 3535 3535
==========================================
- Hits 10502 10501 -1
Misses 1403 1403
- Partials 930 931 +1 🚀 New features to boost your workflow:
|



After submitting the waitlist email, the success state now points people to join the Slack workspace and the #alpha-access channel - that's where alpha builds drop and access actually happens.