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 |