mirror of
https://github.com/creativetimofficial/vue-material-kit.git
synced 2025-05-24 05:17:02 +08:00
Пилим регистрацию и восстановление пароля
This commit is contained in:
parent
16a2788b5e
commit
89ee3118f6
@ -26,7 +26,8 @@ import ElTypography from "../layouts/sections/elements/typography/TypographyView
|
|||||||
import Project from "../views/LandingPages/Project/Project.vue";
|
import Project from "../views/LandingPages/Project/Project.vue";
|
||||||
import Profile from "../views/LandingPages/Profile/Profile.vue";
|
import Profile from "../views/LandingPages/Profile/Profile.vue";
|
||||||
import TopSecretProject from "../views/LandingPages/Project/TopSecretProject.vue";
|
import TopSecretProject from "../views/LandingPages/Project/TopSecretProject.vue";
|
||||||
|
import BasicRegister from "../views/LandingPages/SignIn/BasicRegister.vue";
|
||||||
|
import ForgotPassword from "../views/LandingPages/SignIn/ForgotPassword.vue";
|
||||||
|
|
||||||
const router = createRouter({
|
const router = createRouter({
|
||||||
history: createWebHistory(import.meta.env.BASE_URL),
|
history: createWebHistory(import.meta.env.BASE_URL),
|
||||||
@ -55,6 +56,18 @@ const router = createRouter({
|
|||||||
component: Profile
|
component: Profile
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
path: "/register",
|
||||||
|
name: "register",
|
||||||
|
component: BasicRegister,
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
path: "/forgot",
|
||||||
|
name: "forgot",
|
||||||
|
component: ForgotPassword,
|
||||||
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
path: "/pages/landing-pages/about-us",
|
path: "/pages/landing-pages/about-us",
|
||||||
name: "about",
|
name: "about",
|
||||||
|
176
src/views/LandingPages/SignIn/BasicRegister.vue
Normal file
176
src/views/LandingPages/SignIn/BasicRegister.vue
Normal file
@ -0,0 +1,176 @@
|
|||||||
|
<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="/pages/landing-pages/basic"
|
||||||
|
class="text-success text-gradient font-weight-bold"
|
||||||
|
>Войти</a
|
||||||
|
>
|
||||||
|
</p>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Header>
|
||||||
|
</template>
|
@ -117,13 +117,13 @@ export default {
|
|||||||
<div>
|
<div>
|
||||||
<div v-if="isAuthenticated">
|
<div v-if="isAuthenticated">
|
||||||
<!-- This will only be displayed if the user is authenticated -->
|
<!-- This will only be displayed if the user is authenticated -->
|
||||||
<p>Опять Ты!</p>
|
<p>Вы вошли в аккаунт </p>
|
||||||
<button @click="logout">Выход</button>
|
<button @click="logout">Выход</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-else>
|
<div v-else>
|
||||||
<!-- This will be displayed if the user is not authenticated -->
|
<!-- This will be displayed if the user is not authenticated -->
|
||||||
<p>Ты с какого района?</p>
|
<p>Пожалуйста, введите логин и пароль</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -160,9 +160,17 @@ export default {
|
|||||||
<p class="mt-4 text-sm text-center">
|
<p class="mt-4 text-sm text-center">
|
||||||
Нет аккаунта?
|
Нет аккаунта?
|
||||||
<a
|
<a
|
||||||
href="#"
|
href="/register"
|
||||||
class="text-success text-gradient font-weight-bold"
|
class="text-success text-gradient font-weight-bold"
|
||||||
>Пока что нахер идите</a
|
>Зарегистироваться</a
|
||||||
|
>
|
||||||
|
</p>
|
||||||
|
<p class="mt-4 text-sm text-center">
|
||||||
|
|
||||||
|
<a
|
||||||
|
href="/forgot"
|
||||||
|
class="text-success text-gradient font-weight-bold"
|
||||||
|
>Забыли пароль</a
|
||||||
>
|
>
|
||||||
</p>
|
</p>
|
||||||
</form>
|
</form>
|
||||||
|
33
src/views/LandingPages/SignIn/ForgotPassword.vue
Normal file
33
src/views/LandingPages/SignIn/ForgotPassword.vue
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
<!-- Шаблон для страницы, содержимое которой видно только зарегистрированным пользователям -->
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
|
||||||
|
import { computed } from "vue";
|
||||||
|
|
||||||
|
// example components
|
||||||
|
import DefaultNavbar from "@/examples/navbars/NavbarDefault.vue";
|
||||||
|
import Header from "@/examples/Header.vue";
|
||||||
|
|
||||||
|
|
||||||
|
const isAuthenticated = computed(() => !!sessionStorage.getItem('access_token')); // Computed property to check if the user is authenticated
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<DefaultNavbar />
|
||||||
|
|
||||||
|
<Header>
|
||||||
|
<div>
|
||||||
|
<h1>Забыли пароль?</h1>
|
||||||
|
</div>
|
||||||
|
<div v-if="isAuthenticated">
|
||||||
|
<p>Как же ты зашёл тогда?</p>
|
||||||
|
</div>
|
||||||
|
<div v-else>
|
||||||
|
<p>Очень жаль</p>
|
||||||
|
</div>
|
||||||
|
</Header>
|
||||||
|
</template>
|
Loading…
x
Reference in New Issue
Block a user