Gitiles
Code Review
Sign In
gerrit.nordix.org
/
nolabs
/
website
/
c2a4601da93c48ad86b63d6520e74d9d83a4d95b
/
.
/
app
/
static
/
js
/
signUp.js
blob: fcf1624c53c0dfa54ec454c0226fab32811224f2 [
file
] [
log
] [
blame
]
$
(
function
()
{
$
(
'#btnSignUp'
).
click
(
function
()
{
$
.
ajax
({
url
:
'/signUp'
,
data
:
$
(
'form'
).
serialize
(),
type
:
'POST'
,
success
:
function
(
response
)
{
console
.
log
(
response
);
},
error
:
function
(
error
)
{
console
.
log
(
error
);
}
});
});
});