Advertisement
PurePureMilk

Stage 8 Level 14

Mar 13th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. onEvent("login_btn", "click", function() {
  2. //add an if-else statement here
  3. if (getText("password_input") == "Hi") {
  4. setText("access_label", "Access Granted!");
  5. showElement("greenLock_img");
  6. } else {
  7. setText("access_label", "Access DENIED");
  8. showElement("redLock_img");
  9. if (__) {
  10.  
  11. }
  12. }
  13. });
  14. // You do not need to modify the code in the event handler below.
  15. onEvent("password_input", "click", function() {
  16. // Hide Images
  17. hideElement("redLock_img");
  18. hideElement("greenLock_img");
  19. // Make text fields blank - ""
  20. setText("access_label","");
  21. setText("password_input","");
  22. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement