Skip to content

The repository for Internal portals of ADG made during Gravitas Events UniDev and IosFusion

Notifications You must be signed in to change notification settings

MadhavBahl/ADG-EventsSignUp-AND-Discussion-PORTAL

Repository files navigation

THE SIGNUP FORM

The Code for Sign Up Form for one of the premium workshop event of ADG -- IOS-FUSION. For backend integration:

$("#formID").submit(function(e) {

var url = "TYPE THE PATH OF SERVER HERE (like /signup)"; 
// the script where you handle the form input.
$.ajax({
       type: "POST",
       url: url,
       data: $("#formID").serialize(), 
       success: function(data)
       {
           alert(data); 
       }
     });
e.preventDefault(); // avoid to execute the actual submit of the form.

});

About

The repository for Internal portals of ADG made during Gravitas Events UniDev and IosFusion

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published