Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. <input type="text" name="telefon" required="" placeholder="Telefon numaranız" class="form-control">
  2.  
  3. <script>
  4. function uyem() {
  5. jQuery.ajax({
  6. type: 'POST',
  7. url: 'src/ajax/kayit.php',
  8.  
  9. data: $('#uyelik-formu').serialize(),
  10. error:function(){ $('#sonuc').html("Bir hata algılandı."); },
  11. success : function (sonuc){
  12. if(sonuc == 'msms'){
  13. $("#mod-sms").modal('show');
  14. }
  15. if (sonuc == 'hatak'){
  16. $("#sonuc").html('<div role="alert" class="alert alert-danger alert-icon alert-icon-colored alert-dismissible"><div class="icon"><span class="mdi mdi-close-circle-o"></span></div><div class="message"><button type="button" data-dismiss="alert" aria-label="Close" class="close"><span aria-hidden="true" class="mdi mdi-close"></span></button><strong>Hata!</strong> E-posta yada telefon başka bir üye tarafından kullanılmakta.</div></div>');
  17. }
  18. if(sonuc == 'error'){
  19. $("#mod-error").modal('show');
  20. setTimeout(function() { location.reload() },4000);
  21. }
  22. if (sonuc == 'hata'){
  23. $("#sonuc").html('<div role="alert" class="alert alert-danger alert-icon alert-icon-colored alert-dismissible"><div class="icon"><span class="mdi mdi-close-circle-o"></span></div><div class="message"><button type="button" data-dismiss="alert" aria-label="Close" class="close"><span aria-hidden="true" class="mdi mdi-close"></span></button><strong>Hata!</strong> Geçerli bir e-posta ve telefon numarası giriniz.</div></div>');
  24. }
  25. }
  26. });
  27. }
  28. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement