Changeset 7d8eeab for ReserveNGo-frontend/src/components/Project/login_.vue
- Timestamp:
- 04/29/25 15:00:55 (41 hours ago)
- Branches:
- master
- Children:
- 349551d
- Parents:
- bf78464 (diff), dad25fc (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ReserveNGo-frontend/src/components/Project/login_.vue
rbf78464 r7d8eeab 28 28 await fetch(this.url, { 29 29 method: 'POST', 30 headers: { 'Content-Type': 'application/ x-www-form-urlencoded'},31 body: new URLSearchParams({32 33 password: this.form_info.password30 headers: { 'Content-Type': 'application/json'}, 31 body: JSON.stringify({ 32 email: this.form_info.email, 33 password: this.form_info.password, 34 34 }) 35 35 }).then((response) => response.json())
Note:
See TracChangeset
for help on using the changeset viewer.