Fixed 2 URL
This commit is contained in:
parent
04cf40b6af
commit
2238fc39af
|
@ -21,7 +21,7 @@ $('#user-edit-form > form').on('submit', function(e) {
|
||||||
|
|
||||||
const formData = new FormData(this);
|
const formData = new FormData(this);
|
||||||
|
|
||||||
axios.post('/dashboard/update_user', formData)
|
axios.post(`${base_url}/dashboard/update_user`, formData)
|
||||||
.then( resp => {
|
.then( resp => {
|
||||||
if (resp.data) window.location.reload()
|
if (resp.data) window.location.reload()
|
||||||
})
|
})
|
||||||
|
@ -46,7 +46,7 @@ $('#user-passwd-form > form').on('submit', function(e) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
axios.post('/dashboard/change_passwd', formData)
|
axios.post(`${base_url}/dashboard/change_passwd`, formData)
|
||||||
.then( resp => {
|
.then( resp => {
|
||||||
if (resp.data) {
|
if (resp.data) {
|
||||||
if (resp.data.ok) window.location.reload()
|
if (resp.data.ok) window.location.reload()
|
||||||
|
|
Loading…
Reference in New Issue