An open API service indexing awesome lists of open source software.

https://github.com/madhavbahl/adg-eventssignup-and-discussion-portal

The repository for Internal portals of ADG made during Gravitas Events UniDev and IosFusion
https://github.com/madhavbahl/adg-eventssignup-and-discussion-portal

adg internal-portals

Last synced: about 1 month ago
JSON representation

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

Awesome Lists containing this project

README

        

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.
});