javascript-solid-server 0.0.167 → 0.0.169
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/auth/middleware.js +1 -1
- package/src/idp/views.js +1 -1
package/package.json
CHANGED
package/src/auth/middleware.js
CHANGED
|
@@ -362,7 +362,7 @@ function getErrorPage(statusCode, isAuthenticated, request) {
|
|
|
362
362
|
<p class="subtitle">${subtitle}</p>
|
|
363
363
|
|
|
364
364
|
<div class="actions">
|
|
365
|
-
${is401 ? `<a href="https://solidos.
|
|
365
|
+
${is401 ? `<a href="https://solidos.org/docs/browser/?uri=${encodeURIComponent(baseUrl + request.url)}" class="btn btn-primary">
|
|
366
366
|
Open in Data Browser
|
|
367
367
|
</a>` : ''}
|
|
368
368
|
<a href="${baseUrl}/" class="btn btn-secondary">
|
package/src/idp/views.js
CHANGED
|
@@ -620,7 +620,7 @@ export function landingPage(ctx = {}) {
|
|
|
620
620
|
: '<a href="/idp/register" class="btn btn-primary" style="text-decoration: none;">Create Account</a>'}
|
|
621
621
|
|
|
622
622
|
<div class="signin-note">
|
|
623
|
-
<strong>${singleUser ? 'Sign in' : 'Already have an account?'}</strong> ${singleUser ? 'from' : 'Sign in from'} a Solid app — for example, <a href="https://solid-apps.github.io/pilot/" target="_blank" rel="noopener">pilot</a> is a minimal console you can open right now. Point it at this server and click Sign In.
|
|
623
|
+
<strong>${singleUser ? 'Sign in' : 'Already have an account?'}</strong> ${singleUser ? 'from' : 'Sign in from'} a Solid app — for example, <a href="https://solid-apps.github.io/pilot/" target="_blank" rel="noopener">pilot</a> is a minimal console you can open right now. Point it at this server and click Sign In. Or <a href="https://solidproject.org/apps" target="_blank" rel="noopener">browse other Solid apps</a>.
|
|
624
624
|
</div>
|
|
625
625
|
|
|
626
626
|
${issuer ? `<div class="issuer">Issuer: ${escapeHtml(issuer.replace(/\/$/, ''))}</div>` : ''}
|