Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/openneuro-app/src/scripts/errors/errorRoute.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ function ErrorRoute() {
<Routes>
<Route path="github" element={<FourOThreePage />} />
<Route path="orcid" element={<OrcidGeneral />} />
<Route path="orcid/unknown" element={<OrcidGeneral />} />
<Route path="email-warning" element={<OrcidEmailWarning />} />
<Route path="*" element={<FourOFourPage />} />
</Routes>
Expand Down
12 changes: 12 additions & 0 deletions packages/openneuro-app/src/scripts/errors/orcid/general.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@ import React from "react"
const OrcidError = () => (
<div className="panel-heading">
<h2>There was an issue authenticating with your ORCID account.</h2>
<p>
This may be a temporary issue, please try again later. Ensure that your
ORCID profile has one email address available to OpenNeuro following{" "}
<a href="https://docs.openneuro.org/orcid.html#enabling-trusted-access-to-emails">
our documentation
</a>{" "}
and try again.
</p>
<p>
If this issue persists, please contact support and include the ORCID
account you're attempting to login with.
</p>
</div>
)

Expand Down