Changes between Version 19 and Version 20 of UserOptInConsent
- Timestamp:
- Jun 15, 2018, 2:18:37 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UserOptInConsent
v19 v20 88 88 89 89 Additional parameters for `create_account.php` RPC are 90 * ` optin` = 0|1 - If true, sets the `consent_flag` to 1. If false the `consent_flag` is set to 0 and `consent_not_required` is set to 1. See discussion of anonymous accounts above.90 * `consent_flag` = 0|1 - If true, sets the `consent_flag` to 1. If false the `consent_flag` is set to 0 and `consent_not_required` is set to 1. See discussion of anonymous accounts above. 91 91 * `source` = 'string' 92 92 * example: 'client', see above discussion about `source` for more details. … … 105 105 Example: 106 106 {{{ 107 am_set_info.php? consent_name=ENROLL&consent_flag=1&consent_not_required=0&consent_source=accountmanager107 am_set_info.php?account_key=ASDF&consent_name=ENROLL&consent_flag=1&consent_not_required=0&consent_source=accountmanager 108 108 }}} 109 109 … … 114 114 The Web site account registration page will have a new panel that includes the terms of use text. This will be the same text file as [wiki:TermsOfUse]. The text file is processed with PHP's `nl2br()` function in order to format the plain text into text that is readable in HTML. Admins should **not** put HTML tags into the plain text [wiki:TermsOfUse] file. (In the future, we hope to make this HTML compatible.) 115 115 116 The registration page will have an additional checkbox that requires a user opt-into the terms of use. If this is not checked, the account will not be created, and an error shown to the user. Only when the checkbox is checked, will an account be created. A new record will be inserted into the `consent` table, in the same manner as the create_account RPC.116 The registration page will have an additional checkbox that requires a user agree to the terms of use. If this is not checked, the account will not be created, and an error shown to the user. Only when the checkbox is checked, will an account be created. A new record will be inserted into the `consent` table, in the same manner as the create_account RPC. 117 117 118 118 === OPS pages ===