From 705a06633ef706f46a5936adabe8942f80c4404d Mon Sep 17 00:00:00 2001 From: Ruben Verborgh Date: Fri, 23 Jul 2021 14:38:09 +0200 Subject: [PATCH] docs: Make registration text more friendly. --- .../email-password/register-response.html.ejs | 41 +++++++++++++------ test/integration/Identity.test.ts | 24 ++++------- 2 files changed, 35 insertions(+), 30 deletions(-) diff --git a/templates/identity/email-password/register-response.html.ejs b/templates/identity/email-password/register-response.html.ejs index 44401194e..3bbe29e72 100644 --- a/templates/identity/email-password/register-response.html.ejs +++ b/templates/identity/email-password/register-response.html.ejs @@ -13,30 +13,45 @@

You are signed up

- <% if (createWebId) { %> +

+ Welcome to Solid. + We wish you an exciting experience! +

+ + <% if (createPod) { %> +

Your new pod

- Your new WebID is <%= webId %>. + Your new pod is located at <%= podBaseUrl %>. +
+ You can store your documents and data there.

<% } %> - <% if (register) { %> + + <% if (createWebId) { %> +

Your new WebID

- You can now identify as <%= webId %> - on this server using <%= email %>. + Your new WebID is <%= webId %>. +
+ You can use this identifier to interact with Solid pods and apps. +

+ <% } %> + + <% if (register) { %> +

Your new login

+

+ You can log in + with your WebID <%= webId %> + on this server via your email address <%= email %>.

<% if (!createWebId) { %>

- Make sure you add the triple + You will need to add the triple <%= `<${webId}> <${oidcIssuer}>.`%> - to your WebID profile. + to your existing WebID document <%= webId %> + to indicate that you trust this server as a login provider for your WebID.

<% } %> <% } %> - <% if (createPod) { %> -

- Your new pod has been created - and can be found at <%= podBaseUrl %>. -

- <% } %>