Skip to content

Instantly share code, notes, and snippets.

@r3dm1ke
Created February 27, 2020 18:37
Show Gist options
  • Save r3dm1ke/e09b25c2421b58f4c2fcb869676afdbb to your computer and use it in GitHub Desktop.
Save r3dm1ke/e09b25c2421b58f4c2fcb869676afdbb to your computer and use it in GitHub Desktop.
<div x-data="{password: ''}">
<input x-model="password" placeholder="Enter your password" />
<p x-show="password === 'abacaba'">Access granted</p>
<p x-show="password !== 'abacaba'">Access denied</p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment