Skip to content

Instantly share code, notes, and snippets.

@patrickposner
Created December 21, 2020 19:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save patrickposner/21ca64cb1dd2159a36231e3055cc3619 to your computer and use it in GitHub Desktop.
Save patrickposner/21ca64cb1dd2159a36231e3055cc3619 to your computer and use it in GitHub Desktop.
Logout button for Passster
<?php
// logout button
add_shortcode( 'passster-logout', function() {
?>
<button id="ps-logout">Logout</button>
<script>
jQuery(document).ready(function( $ ) {
$('#ps-logout').on('click', function() {
cookie.set('passster', '', {
expires: 0,
path: '/',
});
window.location = "https://my-website.com";
});
});
</script>
<?php
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment