Changeset 2752769
- Timestamp:
- 07/06/2022 09:11:27 PM (4 years ago)
- Location:
- identity-plus/trunk
- Files:
-
- 3 edited
-
identity-plus.php (modified) (1 diff)
-
lib/settings_panel.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
identity-plus/trunk/identity-plus.php
r2516378 r2752769 5 5 Plugin URI: https://wordpress.org/plugins/identity-plus 6 6 Description: Connect your WordPress with Identity Plus and enable invisible 2 factor authentication, secured SSO, SSL Client Certificate based access on select pages and join the Identity Plus network of trust where devices and people are anonymousely rated based on how they behave. 7 Version: 2.4. 17 Version: 2.4.2 8 8 Author: Identity Plus Inc. 9 9 Author URI: https://identity.plus -
identity-plus/trunk/lib/settings_panel.php
r2362334 r2752769 57 57 function identity_plus_enforce_render( ) { 58 58 $options = get_option( 'identity_plus_settings' );?> 59 <input type='checkbox' id='identity_plus_settings[enforce]' name='identity_plus_settings[enforce]' <?php isset($options['enforce']) ? checked( $options['enforce'], 1 ) : ""; ?> value='1'><label for='identity_plus_settings[enforce]'>Enforce Device Identity</label> 60 <p class="identity-plus-hint" style="margin-bottom:10px;">When Identity Plus device id is enforced, resources starting with any of the enumerated filters will only 59 <?php if(isset($_SESSION['identity-plus-user-profile'])){ ?> 60 <input type='checkbox' id='identity_plus_settings[enforce]' name='identity_plus_settings[enforce]' <?php isset($options['enforce']) ? checked( $options['enforce'], 1 ) : ""; ?> value='1'><label for='identity_plus_settings[enforce]'>Enforce Device Identity</label> 61 <?php } else { ?> 62 <p class="identity-plus-hint" style="margin-bottom:10px;">Enforce Device Identity is disabled to prevent you from locking yourself out of your Wordpress. Please install a device identity to access this feature.</p> 63 <?php } ?> 64 <p class="identity-plus-hint" style="margin-bottom:10px;">When Identity Plus Device Identity is enforced, resources starting with any of the enumerated filters will only 61 65 be accessible from devices (desktop / laptop /mobile ) bearing a valid Identity + SSL Client Certificate. </p><?php 62 66 } … … 254 258 </div> 255 259 </form> 256 257 <form id="upload-fm" class="identity-plus-main-fm" action="admin-post.php" method='post' enctype="multipart/form-data"> 258 <h2>Network of Trust</h2> 259 <p class="identity-plus-separator" style="padding-top:5px;"></p><p class="identity-plus-hint">Collaborate with the Identity Plus community to better identify legitimate users using anonymized hooks (no personal information is shared). This will help eliminate SPAM and fake accounts.</p> 260 <input type="hidden" name="action" value="not_enroll"> 261 <div> 262 <?php submit_button(isset($options['not_enroll']) && $options['not_enroll'] == 1 ? "Disable" : "Enroll"); ?> 263 </div> 264 </form> 260 <?php if(false){ 261 // deliberately disabling network of trust as it is not needed at the moment 262 ?> 263 <form id="upload-fm" class="identity-plus-main-fm" action="admin-post.php" method='post' enctype="multipart/form-data"> 264 <h2>Network of Trust</h2> 265 <p class="identity-plus-separator" style="padding-top:5px;"></p><p class="identity-plus-hint">Collaborate with the Identity Plus community to better identify legitimate users using anonymized hooks (no personal information is shared). This will help eliminate SPAM and fake accounts.</p> 266 <input type="hidden" name="action" value="not_enroll"> 267 <div> 268 <?php submit_button(isset($options['not_enroll']) && $options['not_enroll'] == 1 ? "Disable" : "Enroll"); ?> 269 </div> 270 </form> 271 <?php } ?> 265 272 <?php 266 273 } … … 302 309 <div class="identity-plus-main-fm-header"> 303 310 <h1 class="identity-plus-brand">identity<span>plus</span></h1> 304 <h5> we build on trust</h5>311 <h5>log in with your device</h5> 305 312 </div> 306 313 -
identity-plus/trunk/readme.txt
r2516378 r2752769 3 3 Tags: authentication, security, 2factor, comments, spam, VPN, tls authentication, SSL client certificate, device identity, identity in the browser, two factor, login, two step authentication, password, admin, mobile, multi-factor, android, iphone, sso, strong two-step verification 4 4 Requires at least: 3.9 5 Tested up to: 5.76 Stable tag: 2.4. 15 Tested up to: 6.0 6 Stable tag: 2.4.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 88 88 == Changelog == 89 89 90 == 2.4.2 == 91 Minor bug fixes and tested with WordPress 6.0 92 90 93 == 2.4.1 == 91 94 Minor bug fixes
Note: See TracChangeset
for help on using the changeset viewer.