feat: Add full name to the user signup form (#1534)
This commit is contained in:
parent
796e376fa7
commit
9d3dda9a61
10 changed files with 163 additions and 219 deletions
|
@ -26,7 +26,8 @@ export default {
|
|||
const fetchPromise = new Promise((resolve, reject) => {
|
||||
axios
|
||||
.post(urlData.url, {
|
||||
account_name: creds.name,
|
||||
account_name: creds.accountName.trim(),
|
||||
user_full_name: creds.fullName.trim(),
|
||||
email: creds.email,
|
||||
})
|
||||
.then(response => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue