From: D B. <ba...@aw...> - 2020-03-13 18:34:32
|
Hi! I've configured a registration form in unity for my users and I'd like to collect their agreement to our terms and conditions. The terms can be seen at a publicly available URL. How can I link to that URL in the agreement text (instead of pasting two pages of legalese into the agreement box)? Cheers, D |
From: Krzysztof B. <kb...@un...> - 2020-03-14 10:05:17
|
Hi, W dniu 13.03.2020 o 19:34, D Baum pisze: > Hi! > > I've configured a registration form in unity for my users and I'd like > to collect their agreement to our terms and conditions. The terms can be > seen at a publicly available URL. How can I link to that URL in the > agreement text (instead of pasting two pages of legalese into the > agreement box)? For the current unity: first of all you need to set unityServer.core.allowFullHtml=true in unityServer.conf. This turns off some of the XSS prevention measures, basically trusting admin-entered HTML. Then you can configure your registration form agreement with a link, like this: I agree to <a href="https://example.com/tou.html" target="_blank">ToU</a> What is more, a proper handling of policy documents & agreements is under development and should be available in 3.3 or 3.4 latest. Unity will offer: central definition of policy documents, support for changing of document versions, tracking of who accepted what, common support for requiring acceptance across registration forms, enquiry forms and IdP endpoints. HTH, Krzysztof |
From: D B. <ba...@aw...> - 2020-03-17 14:45:06
|
Hi! On 14/03/2020 11:04, Krzysztof Benedyczak wrote: > For the current unity: > > first of all you need to set > > unityServer.core.allowFullHtml=true > > in unityServer.conf. This turns off some of the XSS prevention measures, > basically trusting admin-entered HTML. > > Then you can configure your registration form agreement with a link, > like this: > > I agree to <a href="https://example.com/tou.html" target="_blank">ToU</a> Perfect, thanks! BTW: Is there a way to re-order the form elements? > What is more, a proper handling of policy documents & agreements is > under development and should be available in 3.3 or 3.4 latest. Unity > will offer: central definition of policy documents, support for changing > of document versions, tracking of who accepted what, common support for > requiring acceptance across registration forms, enquiry forms and IdP > endpoints. Wow, sounds cool :-) Thanks! D |
From: Krzysztof B. <kb...@un...> - 2020-03-18 09:36:55
|
Hi, W dniu 17.03.2020 o 15:44, D Baum pisze: > Hi! > > On 14/03/2020 11:04, Krzysztof Benedyczak wrote: >> For the current unity: >> >> first of all you need to set >> >> unityServer.core.allowFullHtml=true >> >> in unityServer.conf. This turns off some of the XSS prevention measures, >> basically trusting admin-entered HTML. >> >> Then you can configure your registration form agreement with a link, >> like this: >> >> I agree to <a href="https://example.com/tou.html" target="_blank">ToU</a> > Perfect, thanks! > > BTW: Is there a way to re-order the form elements? Yes. Just enable custom layout HTH, KB |
From: D B. <ba...@aw...> - 2020-03-18 10:35:56
Attachments:
unity_form_attributes.png
|
Ah, thanks, that solves my issue! Nonetheless, some suggestions for your backlog regarding UX: Having attributes listed as [0] through [4] is not very straightforward for editing, the attribute name would be more intuitive. Or you could add the "reorder" button that exists in the profile action page also to the page for editing the collected attributes. Cheers, D On 18/03/2020 10:36, Krzysztof Benedyczak wrote: > Hi, > > W dniu 17.03.2020 o 15:44, D Baum pisze: >> Hi! >> >> On 14/03/2020 11:04, Krzysztof Benedyczak wrote: >>> For the current unity: >>> >>> first of all you need to set >>> >>> unityServer.core.allowFullHtml=true >>> >>> in unityServer.conf. This turns off some of the XSS prevention measures, >>> basically trusting admin-entered HTML. >>> >>> Then you can configure your registration form agreement with a link, >>> like this: >>> >>> I agree to <a href="https://example.com/tou.html" target="_blank">ToU</a> >> Perfect, thanks! >> >> BTW: Is there a way to re-order the form elements? > > Yes. Just enable custom layout > > > HTH, > KB > |
From: Krzysztof B. <kb...@un...> - 2020-03-19 08:34:43
|
W dniu 18.03.2020 o 11:35, D Baum pisze: > Ah, thanks, that solves my issue! > > Nonetheless, some suggestions for your backlog regarding UX: > Having attributes listed as [0] through [4] is not very straightforward > for editing, the attribute name would be more intuitive. > Or you could add the "reorder" button that exists in the profile action > page also to the page for editing the collected attributes. Yes, we are aware of this. Simply put that's quite a bit of work on a rather rarely used functionality, so rather far in the queue. |