Skip to content

Commit

Permalink
Update loginview to use URL
Browse files Browse the repository at this point in the history
  • Loading branch information
tobyyu007 committed Dec 19, 2023
1 parent 02af988 commit aceae66
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion frontend/dist/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<link href="https://fonts.googleapis.com/css?family=Saira:400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Archivo:400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<script type="module" crossorigin src="/resame-website/assets/index-61d66fde.js"></script>
<script type="module" crossorigin src="/resame-website/assets/index-6247830d.js"></script>
<link rel="stylesheet" href="/resame-website/assets/index-bbcb1de9.css">
</head>
<body class="no-scroll" style="background-color: white">
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion frontend/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<link href="https://fonts.googleapis.com/css?family=Saira:400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Archivo:400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<script type="module" crossorigin src="/resame-website/assets/index-61d66fde.js"></script>
<script type="module" crossorigin src="/resame-website/assets/index-6247830d.js"></script>
<link rel="stylesheet" href="/resame-website/assets/index-bbcb1de9.css">
</head>
<body class="no-scroll" style="background-color: white">
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/vue/core/LoginView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export default {
return
}
fetch("http://127.0.0.1:3033/login", {
fetch("https://res-a-me.resilientdb.com/login", {
method: "POST",
body: JSON.stringify(userData),
headers: {
Expand All @@ -124,7 +124,7 @@ export default {
sessionStorage.setItem("access_token", json['access_token']);
sessionStorage.setItem("refresh_token", json['refresh_token']);
try {
const updateResponse = await fetch("http://127.0.0.1:3033/updateResume", {
const updateResponse = await fetch("https://res-a-me.resilientdb.com/updateResume", {
method: "POST",
headers: {
"Content-type": "application/json; charset=UTF-8",
Expand Down Expand Up @@ -162,7 +162,7 @@ export default {
password: this.password
};
fetch("http://127.0.0.1:3033/register", {
fetch("https://res-a-me.resilientdb.com/register", {
method: "POST",
headers: {
"Content-Type": "application/json; charset=UTF-8"
Expand Down

0 comments on commit aceae66

Please sign in to comment.