change url to https

This commit is contained in:
NekoVari 2023-10-12 17:28:22 +07:00
parent f5630ba590
commit 53b593086c
2 changed files with 2 additions and 2 deletions

View file

@ -94,7 +94,7 @@ export default {
login() { login() {
if (this.input.username !== '' && this.input.password !== '') { if (this.input.username !== '' && this.input.password !== '') {
console.log('Authenticated: Checking with Backend'); console.log('Authenticated: Checking with Backend');
fetch(`http://test.techtransthai.org:5001/api/users/login`, { fetch(`https://little-lines-backend.techtransthai.org/api/users/login`, {
method: "POST", method: "POST",
headers: { headers: {
"Content-Type": "application/json", "Content-Type": "application/json",

View file

@ -108,7 +108,7 @@ import eyeNotLooking from '../../icons/Material/eye-not-looking.svg';
register() { register() {
if (this.input.username !== '' && ((this.input.password !='') && (this.input.password == this.input.passwordConfirm))) { if (this.input.username !== '' && ((this.input.password !='') && (this.input.password == this.input.passwordConfirm))) {
console.log('Authenticated: Checking with Backend'); console.log('Authenticated: Checking with Backend');
fetch("http://test.techtransthai.org:5001/api/users/create", { fetch("https://little-lines-backend.techtransthai.org/api/users/create", {
method: "POST", method: "POST",
headers: { headers: {
'Content-Type': 'application/json', 'Content-Type': 'application/json',