diff --git a/front/components.d.ts b/front/components.d.ts
index 783e5ec..f648f6c 100644
--- a/front/components.d.ts
+++ b/front/components.d.ts
@@ -12,6 +12,7 @@ declare module 'vue' {
AForm: typeof import('ant-design-vue/es')['Form']
AFormItem: typeof import('ant-design-vue/es')['FormItem']
AInput: typeof import('ant-design-vue/es')['Input']
+ AInputNumber: typeof import('ant-design-vue/es')['InputNumber']
AInputPassword: typeof import('ant-design-vue/es')['InputPassword']
ALayout: typeof import('ant-design-vue/es')['Layout']
ALayoutContent: typeof import('ant-design-vue/es')['LayoutContent']
diff --git a/front/src/App.vue b/front/src/App.vue
index 53041e8..bf3d117 100644
--- a/front/src/App.vue
+++ b/front/src/App.vue
@@ -16,6 +16,6 @@ main {
display: flex;
justify-content: center;
align-items: center;
- height: 100vh;
+ height: 80vh;
}
\ No newline at end of file
diff --git a/front/src/components/main/Header.vue b/front/src/components/main/Header.vue
index 04f4380..e614b8b 100644
--- a/front/src/components/main/Header.vue
+++ b/front/src/components/main/Header.vue
@@ -31,7 +31,7 @@ function logout() {
name="logout"
@click="logout()"
danger
- style="margin-left: 10px"
+ style="margin-left: 30px"
>
Выйти
@@ -52,7 +52,7 @@ function logout() {
justify-content: left;
}
.base-nav a {
- margin-left: 10px;
+ margin-left: 30px;
}
diff --git a/front/src/components/pages/Login.vue b/front/src/components/pages/Login.vue
index 905b60a..b8eab92 100644
--- a/front/src/components/pages/Login.vue
+++ b/front/src/components/pages/Login.vue
@@ -34,7 +34,7 @@
Войти
Или
- зарегестрироваться
+ создать аккаунт
diff --git a/front/src/components/pages/SignUp.vue b/front/src/components/pages/SignUp.vue
index e69de29..4adbbc8 100644
--- a/front/src/components/pages/SignUp.vue
+++ b/front/src/components/pages/SignUp.vue
@@ -0,0 +1,86 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Создать
+
+ Или
+ войти в свой аккаунт
+
+
+
+
+
\ No newline at end of file
diff --git a/front/src/router.ts b/front/src/router.ts
index 435c0d0..5da31ed 100644
--- a/front/src/router.ts
+++ b/front/src/router.ts
@@ -12,6 +12,11 @@ export default createRouter({
path: '/login',
name: 'login',
component: () => import('./components/pages/Login.vue'),
+ },
+ {
+ path: '/signup',
+ name: 'signup',
+ component: () => import('./components/pages/SignUp.vue'),
}
],
})