Advertisement
Guest User

Untitled

a guest
Mar 28th, 2016
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1. function loginDB(tx)
  2. {
  3. var Username = document.getElementById("username").value;
  4. var Password = document.getElementById("password").value;
  5. tx.executeSql("SELECT * FROM SoccerEarth WHERE UserName='" + Username + "' AND Password= '" + Password + "'", [], renderList);
  6.  
  7. }
  8. function renderList(tx,results) {
  9. if (results.rows.length > 0) {
  10. navigator.notification.alert("You are in!");
  11. $( ":mobile-pagecontainer" ).pagecontainer( "change", "#page4" );
  12. }
  13. else
  14. {
  15. navigator.notification.alert("Incorrect Password, Please try again!");
  16. $( ":mobile-pagecontainer" ).pagecontainer( "change", "#page3" );
  17. }
  18. }
  19.  
  20. <div data-role="page" id="page4" data-theme="d">
  21. <div data-role="header">
  22. <a href="#page1" class="ui-btn ui-icon-home ui-btn-icon-left">Sign Out</a>
  23. <h1>SoccerMeet</h1>
  24. </div>
  25. <div data-role="main" class="ui-content">
  26. <ul data-role="listview" data-inset="true">
  27.  
  28. <li>
  29. <a href="#page5" data-transition="slide">
  30. <img src="images/icon1.jpg">
  31. <h2>Search Soccer Events</h2>
  32. <p>Find soccer meets near you</p>
  33. </a>
  34. </li>
  35. <li>
  36. <a href="#page6" data-transition="slide">
  37. <img src="images/icon2.png">
  38. <h2>Create an Event</h2>
  39. <p>Have an event you would like to invite people to?</p>
  40. </a>
  41. </li>
  42. <li>
  43. <a href="#page5" data-transition="slide">
  44. <img src="images/icon4.png">
  45. <h2>Help Center</h2>
  46. <p>FAQ's and further guidance on the app</p
  47. ></a>
  48. </li>
  49. <li>
  50. <a href="#page1" data-transition="slide">
  51. <img src="images/icon3.png">
  52. <h2>Settings</h2>
  53. <p>Make changes to the app</p
  54. ></a>
  55. </li>
  56. <li>
  57. <a href="#page1" data-transition="slide">
  58. <img src="images/icon5.png">
  59. <h2>The Team</h2>
  60. <p>Meet the team behind the app, the co-founders, developers etc.</p
  61. ></a>
  62. </li>
  63. </ul>
  64. <div data-role="footer">
  65. <div data-role="navbar">
  66. <ul>
  67. <li><a href="#page1" data-icon="user">Profile</a></li>
  68. <li><a href="#page1" data-icon="location">Find Events</a></li>
  69. <li><a href="#" data-icon="calendar">Calendar</a></li>
  70. <li><a href="#" data-icon="info">Help Center</a></li>
  71. <li><a href="#page7" data-icon="camera">Camera</a></li>
  72. </ul>
  73. </div>
  74. </div>
  75. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement