Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. <div ng-controller="FormWithSmsCodeController as frmSmsCtrl" class="popup-content">
  2. <div class="lost-password-content">
  3. <form name="frmReg" novalidate>
  4. <h5>{{ "maxbet.welcome" | translate}}</h5>
  5. <p>{{ "maxke_registration" | translate}}</p>
  6. <p>{{ 'maxke.registration.steptwo' | translate }}</p>
  7. <label>
  8. <input type="text" pattern="^[\+02][0-9]*$" ng-model="frmReg.phoneNumber" autocomplete="new-phoneNumber" required placeholder="Mobile number">
  9. </label>
  10. <label>
  11. <input type="password" ng-model="frmReg.password" autocomplete="new-password" required placeholder="Password">
  12. </label>
  13. <ion-checkbox class="f-09" ng-model="frmReg.termsAndConditions" ng-required="!frmReg.termsAndConditions">Check</ion-checkbox>
  14. <div><a ui-sref="app.terms" ng-click="closeRegistration()">{{"registration.terms"| translate}}</a></div>
  15. <div ng-bind="msg" ng-class="response == 'OK' ? 'staged-success' : 'staged-error'"></div>
  16. <br>
  17. <a class="button button-block button-darkgreen ng-binding activated" ng-disabled="frmReg.$invalid" ng-click="frmSmsCtrl.submitRegistration(frmReg)"> {{'global.register'|translate}}</a>
  18. </form>
  19. </div>
  20. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement