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
- Host: GitHub
- URL: https://github.com/madhavbahl/adg-eventssignup-and-discussion-portal
- Owner: MadhavBahl
- Created: 2017-09-03T16:07:02.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-16T14:20:34.000Z (over 7 years ago)
- Last Synced: 2025-04-12T22:58:09.217Z (about 1 month ago)
- Topics: adg, internal-portals
- Language: CSS
- Homepage:
- Size: 3.38 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.
});