From 199b685f430910910e43476caa9ccec6a441d020 Mon Sep 17 00:00:00 2001 From: Dominik Süß Date: Tue, 6 Dec 2022 14:15:56 +0100 Subject: [feature] overhaul the oidc system (#961) * [feature] overhaul the oidc system this allows for more flexible username handling and prevents account takeover using old email addresses * [feature] add migration path for old OIDC users * [feature] nicer error reporting for users * [docs] document the new OIDC flow * [fix] return early on oidc error * [docs]: add comments on the finalization logic --- web/template/finalize.tmpl | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 web/template/finalize.tmpl (limited to 'web/template') diff --git a/web/template/finalize.tmpl b/web/template/finalize.tmpl new file mode 100644 index 000000000..5ab4f97dc --- /dev/null +++ b/web/template/finalize.tmpl @@ -0,0 +1,31 @@ +{{ template "header.tmpl" .}} +
+
+

Hi {{.name}}!

+

+ You are about to sign-up to {{ .instance.Title }} ({{ .instance.URI }}) +
+ To ensure the best experience for you, we need you to provide some additional details. +

+ {{if .error}} +
+
{{.error}}
+
+ {{end}} +
+

Important

+

Due to the way the ActivityPub standard works, you cannot change your username after it has been set.

+
+
+ + +
+ + +
+
+{{ template "footer.tmpl" .}} -- cgit v1.3