mirror of
https://github.com/creativetimofficial/vue-material-kit.git
synced 2025-05-24 05:24:21 +08:00
185 lines
6.3 KiB
Vue
185 lines
6.3 KiB
Vue
<script setup>
|
|
import { onMounted } from "vue";
|
|
import { ref } from "vue";
|
|
import axios from 'axios';
|
|
import { computed } from "vue";
|
|
|
|
// example components
|
|
import DefaultNavbar from "@/examples/navbars/NavbarDefault.vue";
|
|
import Header from "@/examples/Header.vue";
|
|
|
|
// material-input
|
|
import setMaterialInput from "@/assets/js/material-input";
|
|
|
|
const username = ref('');
|
|
const password = ref('');
|
|
const errorMessage = ref('');
|
|
|
|
const isAuthenticated = computed(() => !!sessionStorage.getItem('access_token')); // Computed property to check if the user is authenticated
|
|
|
|
|
|
const login = async () => {
|
|
if (!username.value || !password.value) {
|
|
errorMessage.value = "Please fill in both fields.";
|
|
} else {
|
|
const url = 'http://somebodyhire.me/api/token/';
|
|
const headers = {
|
|
'Content-Type': 'application/json',
|
|
};
|
|
const body = {
|
|
username: username.value,
|
|
password: password.value,
|
|
};
|
|
|
|
try {
|
|
const response = await axios.post(url, body, { headers });
|
|
errorMessage.value = `Request:\nPOST ${url}\nHeaders: ${JSON.stringify(headers)}\nBody: ${JSON.stringify(body)}\n\nResponse:\nStatus: ${response.status}\nHeaders: ${JSON.stringify(response.headers)}\nBody: ${JSON.stringify(response.data)}`;
|
|
sessionStorage.setItem('access_token', response.data.access); // Save the access token in sessionStorage (new line)
|
|
} catch (error) {
|
|
if (error.response) {
|
|
// The request was made and the server responded with a status code that falls out of the range of 2xx
|
|
errorMessage.value = `Request:\nPOST ${url}\nHeaders: ${JSON.stringify(headers)}\nBody: ${JSON.stringify(body)}\n\nResponse:\nStatus: ${error.response.status}\nHeaders: ${JSON.stringify(error.response.headers)}\nBody: ${JSON.stringify(error.response.data)}`;
|
|
} else if (error.request) {
|
|
// The request was made but no response was received
|
|
errorMessage.value = `Request:\nPOST ${url}\nHeaders: ${JSON.stringify(headers)}\nBody: ${JSON.stringify(body)}\n\nError: No response received from server. Please try again later.`;
|
|
} else {
|
|
// Something happened in setting up the request that triggered an error
|
|
errorMessage.value = `Request:\nPOST ${url}\nHeaders: ${JSON.stringify(headers)}\nBody: ${JSON.stringify(body)}\n\nError: ${error.message}`;
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
const logout = () => { // Method to logout the user by clearing the session storage (new function)
|
|
sessionStorage.removeItem('access_token');
|
|
};
|
|
|
|
|
|
onMounted(() => {
|
|
setMaterialInput();
|
|
});
|
|
</script>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
username: '',
|
|
password: '',
|
|
errorMessage: '',
|
|
};
|
|
},
|
|
methods: {
|
|
login() {
|
|
if (!this.username || !this.password) {
|
|
this.errorMessage = "Please fill in both fields.";
|
|
} else {
|
|
// Implement login logic here
|
|
this.errorMessage = `Can't login now, you are trying to sign in with login: ${this.username} and password: ${this.password}`;
|
|
}
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
|
|
<template>
|
|
<DefaultNavbar transparent />
|
|
<Header>
|
|
<div
|
|
class="page-header align-items-start min-vh-100"
|
|
:style="{
|
|
backgroundImage:
|
|
'url(https://images.unsplash.com/photo-1497294815431-9365093b7331?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1950&q=80)'
|
|
}"
|
|
loading="lazy"
|
|
>
|
|
<span class="mask bg-gradient-dark opacity-6"></span>
|
|
<div class="container my-auto">
|
|
<div class="row">
|
|
<div class="col-lg-4 col-md-8 col-12 mx-auto">
|
|
<div class="card z-index-0 fadeIn3 fadeInBottom">
|
|
<div
|
|
class="card-header p-0 position-relative mt-n4 mx-3 z-index-2"
|
|
>
|
|
<div
|
|
class="bg-gradient-success shadow-success border-radius-lg py-3 pe-1"
|
|
>
|
|
<h4
|
|
class="text-white font-weight-bolder text-center mt-2 mb-0"
|
|
>
|
|
Вход
|
|
</h4>
|
|
</div>
|
|
</div>
|
|
<div class="card-body">
|
|
<form role="form" class="text-start">
|
|
<div>
|
|
<div v-if="isAuthenticated">
|
|
<!-- This will only be displayed if the user is authenticated -->
|
|
<p>Вы вошли в аккаунт </p>
|
|
<button @click="logout">Выход</button>
|
|
</div>
|
|
|
|
<div v-else>
|
|
<!-- This will be displayed if the user is not authenticated -->
|
|
<p>Пожалуйста, введите логин и пароль</p>
|
|
|
|
|
|
|
|
|
|
<div>
|
|
<input v-model="username" type="text" placeholder="Имя пользователя" />
|
|
</div>
|
|
|
|
<div>
|
|
<input v-model="password" type="password" placeholder="Пароль" />
|
|
</div>
|
|
|
|
|
|
<div class="text-center">
|
|
<button
|
|
type="button"
|
|
class="btn bg-gradient-dark w-100 my-4 mb-2"
|
|
@click="login"
|
|
>
|
|
Войти
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
<div v-if="errorMessage">
|
|
<p>{{ errorMessage }}</p>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<p class="mt-4 text-sm text-center">
|
|
Нет аккаунта?
|
|
<a
|
|
href="/register"
|
|
class="text-success text-gradient font-weight-bold"
|
|
>Зарегистироваться</a
|
|
>
|
|
</p>
|
|
<p class="mt-4 text-sm text-center">
|
|
|
|
<a
|
|
href="/forgot"
|
|
class="text-success text-gradient font-weight-bold"
|
|
>Забыли пароль</a
|
|
>
|
|
</p>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Header>
|
|
</template>
|