From 5ff5037102ddc295847d8c6f24d4fe203294a370 Mon Sep 17 00:00:00 2001 From: Komek Hayytnazarov Date: Tue, 13 Dec 2022 14:44:39 +0500 Subject: [PATCH] faqs added --- src/components/faq/Main.vue | 30 +++++++++++++++ src/helpers/constants.js | 1 + src/views/login/Main.vue | 10 +++-- src/views/register/Main.vue | 74 +++++++++++++++++-------------------- 4 files changed, 72 insertions(+), 43 deletions(-) create mode 100644 src/components/faq/Main.vue diff --git a/src/components/faq/Main.vue b/src/components/faq/Main.vue new file mode 100644 index 0000000..c4830c4 --- /dev/null +++ b/src/components/faq/Main.vue @@ -0,0 +1,30 @@ + + + + \ No newline at end of file diff --git a/src/helpers/constants.js b/src/helpers/constants.js index d8af639..1654d09 100644 --- a/src/helpers/constants.js +++ b/src/helpers/constants.js @@ -22,6 +22,7 @@ export const APPLICATION_APPROVED_STATE = "approved"; export const EXTENSION_QUESTIONNAIRE_FILE = "DOCX"; export const EXTENSION_LETTER_FILE = "DOCX"; +export const EXTENSION_FAQs = "pdf"; export const ACCOUNT_TYPE_BUSINESS = "business"; export const RECAPTCHA_SCORE_MIN = 0.3; export const RECAPTCHA_ACTION = "register"; diff --git a/src/views/login/Main.vue b/src/views/login/Main.vue index 61c5b62..4e1b361 100644 --- a/src/views/login/Main.vue +++ b/src/views/login/Main.vue @@ -1,5 +1,6 @@