Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.03 KB | None | 0 0
  1. <div class="modal1 mfp-hide" id="modal-get-started" >
  2. <div class="block divcenter" style="background-color: #FFF; max-width: 500px;">
  3. <div style="padding: 50px;">
  4. <form name="reg_form" id="get-started-form" class="nobottommargin">
  5.  
  6. <div class="row clearfix">
  7. <div class="col-sm-12">
  8. <h3 class="font-body">Register for Free Trial</h3>
  9. </div>
  10. </div>
  11.  
  12.  
  13. <button class="button button-rounded btn-block t400 center capitalize si-facebook si-colored noleftmargin norightmargin" ng-click="fbLogin()">Login with Facebook</button>
  14.  
  15. <button id="customGoogleBtn1" class="button button-rounded btn-block t400 center capitalize si-gplus si-colored nomargin">Login with Google</button>
  16. <br>
  17. <div style='padding-top: 30px;padding-left: 50px' ng-show ="errorAlreadyRegister">
  18. <span style='color:red;x' >Seems already registered. <a ng-click= "closePopup()" href="#" > Log in </a> instead?</span>
  19. </div>
  20.  
  21.  
  22. </form>
  23. </div>
  24. </div>
  25. </div>
  26.  
  27. <div class="modal1 mfp-hide" id="modal-login" >
  28. <div class="block divcenter" style="background-color: #FFF; max-width: 400px;">
  29. <div style="padding: 50px;">
  30. <h3 class="font-body">Login to your Account</h3>
  31. <form class="nobottommargin">
  32. <div class="col_full">
  33. <label class="font-body capitalize" for="login-form-modal-username">Username:</label>
  34. <input type="text" id="login-form-modal-username" name="login-form-modal-username" value="" class="form-control" />
  35. </div>
  36.  
  37. <div class="col_full">
  38. <label class="font-body capitalize" for="login-form-modal-password">Password:</label>
  39. <input type="password" id="login-form-modal-password" name="login-form-modal-password" value="" class="form-control" />
  40. </div>
  41.  
  42. <div class="col_full nobottommargin">
  43. <button class="button button-rounded nomargin" id="login-form-modal-submit" name="login-form-modal-submit" value="login">Login</button>
  44. <a href="#" class="fright">Forgot Password?</a>
  45. </div>
  46. </form>
  47. <div class="line line-sm"></div>
  48. <button class="button button-rounded btn-block t400 center capitalize si-facebook si-colored noleftmargin norightmargin" ng-click="fbLogin()">Login with Facebook</button>
  49.  
  50. <button id="customGoogleBtn" class="button button-rounded btn-block t400 center capitalize si-gplus si-colored nomargin">Login with Google</button>
  51. <!-- <a href="#" class="button button-rounded btn-block t400 center capitalize si-gplus si-colored nomargin">Login with Google</a> -->
  52. </div>
  53. </div>
  54. </div>
  55.  
  56. $scope.closePopup = function(){
  57. $.magnificPopup.close();
  58. $.magnificPopup.open({
  59. items: {
  60. src: '#modal-login'
  61. }
  62. });
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement