@bilfenyazilimekibi/bilpack 1.3.27 → 1.3.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bilpack.common.js +68 -2
- package/dist/bilpack.css +3714 -0
- package/dist/bilpack.umd.js +68 -2
- package/dist/bilpack.umd.min.js +68 -2
- package/package.json +1 -1
package/dist/bilpack.common.js
CHANGED
|
@@ -427,6 +427,28 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpac
|
|
|
427
427
|
|
|
428
428
|
/***/ }),
|
|
429
429
|
|
|
430
|
+
/***/ "./src/components/bf-login/LoginResetPasswordForm.vue":
|
|
431
|
+
/*!************************************************************!*\
|
|
432
|
+
!*** ./src/components/bf-login/LoginResetPasswordForm.vue ***!
|
|
433
|
+
\************************************************************/
|
|
434
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
435
|
+
|
|
436
|
+
"use strict";
|
|
437
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var _LoginResetPasswordForm_vue_vue_type_template_id_6e5201d8_scoped_true__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./LoginResetPasswordForm.vue?vue&type=template&id=6e5201d8&scoped=true */ \"./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/bf-login/LoginResetPasswordForm.vue?vue&type=template&id=6e5201d8&scoped=true\");\n/* harmony import */ var _LoginResetPasswordForm_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./LoginResetPasswordForm.vue?vue&type=script&lang=js */ \"./src/components/bf-login/LoginResetPasswordForm.vue?vue&type=script&lang=js\");\n/* harmony import */ var _LoginResetPasswordForm_vue_vue_type_style_index_0_id_6e5201d8_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./LoginResetPasswordForm.vue?vue&type=style&index=0&id=6e5201d8&lang=scss&scoped=true */ \"./src/components/bf-login/LoginResetPasswordForm.vue?vue&type=style&index=0&id=6e5201d8&lang=scss&scoped=true\");\n/* harmony import */ var _node_modules_vue_vue_loader_v15_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! !../../../node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js */ \"./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js\");\n\n\n\n;\n\n\n/* normalize component */\n\nvar component = (0,_node_modules_vue_vue_loader_v15_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(\n _LoginResetPasswordForm_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"],\n _LoginResetPasswordForm_vue_vue_type_template_id_6e5201d8_scoped_true__WEBPACK_IMPORTED_MODULE_3__.render,\n _LoginResetPasswordForm_vue_vue_type_template_id_6e5201d8_scoped_true__WEBPACK_IMPORTED_MODULE_3__.staticRenderFns,\n false,\n null,\n \"6e5201d8\",\n null\n \n)\n\n/* hot reload */\nif (false) { var api; }\ncomponent.options.__file = \"src/components/bf-login/LoginResetPasswordForm.vue\"\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (component.exports);\n\n//# sourceURL=webpack://@bilfenyazilimekibi/bilpack/./src/components/bf-login/LoginResetPasswordForm.vue?");
|
|
438
|
+
|
|
439
|
+
/***/ }),
|
|
440
|
+
|
|
441
|
+
/***/ "./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/bf-login/LoginResetPasswordForm.vue?vue&type=script&lang=js":
|
|
442
|
+
/*!********************************************************************************************************************************************************!*\
|
|
443
|
+
!*** ./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/bf-login/LoginResetPasswordForm.vue?vue&type=script&lang=js ***!
|
|
444
|
+
\********************************************************************************************************************************************************/
|
|
445
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
446
|
+
|
|
447
|
+
"use strict";
|
|
448
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({\n name: \"LoginResetPasswordForm\",\n props: {\n token: {\n type: String,\n default: \"\",\n },\n },\n data() {\n return {\n valid: false,\n showPassword: false,\n showConfirmPassword: false,\n isSubmitting: false,\n errorMessage: \"\",\n errors: {\n newPassword: \"\",\n confirmPassword: \"\",\n },\n form: {\n newPassword: \"\",\n confirmPassword: \"\",\n },\n };\n },\n computed: {\n canSubmit() {\n return (\n this.form.newPassword !== \"\" &&\n this.form.confirmPassword !== \"\" &&\n !this.isSubmitting\n );\n },\n },\n methods: {\n handleGoToLogin() {\n window.location.href = \"/login\";\n },\n validateForm() {\n this.errors.newPassword = \"\";\n this.errors.confirmPassword = \"\";\n if (!this.form.newPassword.trim()) {\n this.errors.newPassword = \"Yeni şifre zorunludur.\";\n return false;\n }\n if (this.form.newPassword.length < 4) {\n this.errors.newPassword = \"Şifre en az 4 karakter olmalıdır.\";\n return false;\n }\n if (this.form.newPassword !== this.form.confirmPassword) {\n this.errors.confirmPassword = \"Şifreler eşleşmiyor.\";\n return false;\n }\n return true;\n },\n async handleSubmit() {\n if (!this.token) {\n this.errorMessage = \"Geçersiz veya eksik sıfırlama bağlantısı.\";\n return;\n }\n if (!this.validateForm()) {\n return;\n }\n this.isSubmitting = true;\n this.errorMessage = \"\";\n try {\n const res = await this.$axios.post(\"reset/password/confirm\", {\n token: this.token,\n newPassword: this.form.newPassword,\n });\n const data = res.data || {};\n const d = data.data;\n const status =\n data.status === true ||\n (d && d.status === true) ||\n (d && d.data && d.data.status === true);\n const message = data.message ?? d?.message ?? d?.data?.message ?? \"\";\n\n if (status) {\n this.$store.dispatch(\"openSnackbar\", {\n type: \"success\",\n title: \"Şifreniz başarıyla güncellendi. Giriş sayfasına yönlendiriliyorsunuz...\",\n });\n setTimeout(() => {\n this.$router.push(\"/login\");\n }, 1000);\n } else {\n this.errorMessage = message || \"Bir Hata oluştu.\";\n }\n } catch (err) {\n this.errorMessage =\n err.response?.data?.message || err.response?.data?.error || \"Bir Hata oluştu.\";\n } finally {\n this.isSubmitting = false;\n }\n },\n },\n});\n\n\n//# sourceURL=webpack://@bilfenyazilimekibi/bilpack/./src/components/bf-login/LoginResetPasswordForm.vue?./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options");
|
|
449
|
+
|
|
450
|
+
/***/ }),
|
|
451
|
+
|
|
430
452
|
/***/ "./src/components/bf-login/index.vue":
|
|
431
453
|
/*!*******************************************!*\
|
|
432
454
|
!*** ./src/components/bf-login/index.vue ***!
|
|
@@ -445,7 +467,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpac
|
|
|
445
467
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
446
468
|
|
|
447
469
|
"use strict";
|
|
448
|
-
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n\n\n\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({\n name: \"login\",\n head: {\n title: \"Giriş Yap\"\n },\n data() {\n return {\n submitBtnLoader: false,\n forgetBtnLoader: false,\n isForgottenPassword: false,\n errorTitle: \"Girmiş olduğunuz bilgiler hatalı\",\n showPassword: false,\n errorLogin: false,\n errorText: '',\n errorIcon: '',\n generalSettings: {},\n valid: false,\n data: '',\n tcRules: [\n v => !!v || 'Tc zorunludur',\n v => v.length <= 11 || 'Maksimum 11 karakter alabilir',\n v => v.length >= 11 || 'Minimum 11 karakter olmalıdır',\n ],\n passwordRules: [\n v => !!v || 'Şifre zorunludur',\n v => v.length >= 4 || 'En az 4 karakter alabilir.',\n ],\n form: {\n tc: '',\n password: '',\n eMail: '',\n }\n }\n },\n created() {\n const self = this;\n self.$setPlatform();\n self.generalSettings = self.initGeneralSettings()\n },\n methods: {\n initGeneralSettings() {\n const self = this;\n try {\n const {logo, bilfenLogo, banners} = self.$bilpack.settings.images.login\n return {logo, bilfenLogo, banners}\n } catch (e) {\n console.error('login page images are not defined [logo, bilfenLogo, banners]')\n return {\n logo: '',\n bilfenLogo: '',\n banners: ''\n }\n }\n },\n async resetPassword() {\n\n const forgetBaseUrl = this.$bilpack.env.bilapps.replace('bilapp', 'bildash')\n const link = window.location.href\n\n this.forgetBtnLoader = true\n this.$axios.post(`${forgetBaseUrl}/forget`, {email: this.form.eMail, link})\n .then(res => {\n this.forgetBtnLoader = false\n if (res.data.status && res.data.data.data !== null) {\n this.isForgottenPassword = false\n this.$store.dispatch('openSnackbar', {\n type: 'success',\n title:
|
|
470
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var _LoginResetPasswordForm_vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./LoginResetPasswordForm.vue */ \"./src/components/bf-login/LoginResetPasswordForm.vue\");\n\n\n\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({\n name: \"login\",\n components: {\n LoginResetPasswordForm: _LoginResetPasswordForm_vue__WEBPACK_IMPORTED_MODULE_0__[\"default\"],\n },\n head: {\n title: \"Giriş Yap\"\n },\n computed: {\n isResetPasswordMode() {\n return !!this.$route?.query?.token;\n },\n resetPasswordToken() {\n return this.$route?.query?.token || \"\";\n },\n },\n data() {\n return {\n submitBtnLoader: false,\n forgetBtnLoader: false,\n isForgottenPassword: false,\n errorTitle: \"Girmiş olduğunuz bilgiler hatalı\",\n showPassword: false,\n errorLogin: false,\n errorText: '',\n errorIcon: '',\n generalSettings: {},\n valid: false,\n data: '',\n tcRules: [\n v => !!v || 'Tc zorunludur',\n v => v.length <= 11 || 'Maksimum 11 karakter alabilir',\n v => v.length >= 11 || 'Minimum 11 karakter olmalıdır',\n ],\n passwordRules: [\n v => !!v || 'Şifre zorunludur',\n v => v.length >= 4 || 'En az 4 karakter alabilir.',\n ],\n form: {\n tc: '',\n password: '',\n eMail: '',\n }\n }\n },\n created() {\n const self = this;\n self.$setPlatform();\n self.generalSettings = self.initGeneralSettings()\n },\n methods: {\n initGeneralSettings() {\n const self = this;\n try {\n const {logo, bilfenLogo, banners} = self.$bilpack.settings.images.login\n return {logo, bilfenLogo, banners}\n } catch (e) {\n console.error('login page images are not defined [logo, bilfenLogo, banners]')\n return {\n logo: '',\n bilfenLogo: '',\n banners: ''\n }\n }\n },\n async resetPassword() {\n\n const forgetBaseUrl = this.$bilpack.env.bilapps.replace('bilapp', 'bildash')\n const link = window.location.href\n\n this.forgetBtnLoader = true\n this.$axios.post(`${forgetBaseUrl}/forget`, {email: this.form.eMail, link})\n .then(res => {\n this.forgetBtnLoader = false\n if (res.data.status && res.data.data.data !== null) {\n this.isForgottenPassword = false\n this.$store.dispatch('openSnackbar', {\n type: 'success',\n title: res.data.message\n })\n } else {\n this.$store.dispatch('openSnackbar', {\n type: 'danger',\n title: res.data.message\n })\n }\n })\n .catch(err => {\n this.forgetBtnLoader = false\n this.$store.dispatch('openSnackbar', {\n type: 'error',\n title: err\n })\n })\n\n },\n submit() {\n if (this.valid) {\n this.submitBtnLoader = true\n this.$auth.loginWith('local', {data: this.form})\n .then((res) => {\n this.submitBtnLoader = false\n const loginData = res.data\n if (loginData.status) {\n const currentPlatform = this.$getPlatform();\n const userPlatform = this.$auth.user.corporationName.toLocaleLowerCase('tr-TR')\n\n if (userPlatform !== currentPlatform) {\n // this.redirectToPlatform(userPlatform);\n this.$store.dispatch('setToken', loginData.token)\n this.errorLogin = false\n this.$router.push('/')\n } else {\n this.$store.dispatch('setToken', loginData.token)\n this.errorLogin = false\n this.$router.push('/')\n }\n this.$emit('complete')\n } else {\n this.errorText = loginData.message ? loginData.message : 'Bilgileriniz uyuşmuyor.'\n if (loginData.errorHeader) {\n this.errorTitle = loginData.errorHeader\n }\n this.errorLogin = true\n this.$emit('inComplete')\n // this.data = res.data\n // this.$swal('Giriş yapılamadı!', res.data.message, 'error')\n }\n })\n .catch(err => {\n this.submitBtnLoader = false\n this.errorText = 'Bilgileriniz uyuşmuyor.'\n this.errorLogin = true\n this.$emit('inComplete')\n // this.$swal('Giriş yapılamadı!', 'Kullanıcı bulunamadı. Giriş bilgilerinizi kontrol ediniz.', 'error')\n })\n }\n },\n // async redirectToPlatform(userPlatform) {\n // await this.$auth.logout();\n //\n // const locations = {\n // bilnet: 'https://bilems.bilnetokullari.com/login',\n // bilfen: 'https://bilems.bilfen.com/login'\n // }\n //\n // console.log('locate to ', locations[userPlatform])\n //\n // // todo active this on production\n // window.location.href = locations[userPlatform]\n // },\n }\n});\n\n\n//# sourceURL=webpack://@bilfenyazilimekibi/bilpack/./src/components/bf-login/index.vue?./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options");
|
|
449
471
|
|
|
450
472
|
/***/ }),
|
|
451
473
|
|
|
@@ -966,6 +988,17 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpac
|
|
|
966
988
|
|
|
967
989
|
/***/ }),
|
|
968
990
|
|
|
991
|
+
/***/ "./src/components/bf-login/LoginResetPasswordForm.vue?vue&type=script&lang=js":
|
|
992
|
+
/*!************************************************************************************!*\
|
|
993
|
+
!*** ./src/components/bf-login/LoginResetPasswordForm.vue?vue&type=script&lang=js ***!
|
|
994
|
+
\************************************************************************************/
|
|
995
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
996
|
+
|
|
997
|
+
"use strict";
|
|
998
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var _node_modules_vue_vue_loader_v15_lib_index_js_vue_loader_options_LoginResetPasswordForm_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./LoginResetPasswordForm.vue?vue&type=script&lang=js */ \"./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/bf-login/LoginResetPasswordForm.vue?vue&type=script&lang=js\");\n /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_node_modules_vue_vue_loader_v15_lib_index_js_vue_loader_options_LoginResetPasswordForm_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"]); \n\n//# sourceURL=webpack://@bilfenyazilimekibi/bilpack/./src/components/bf-login/LoginResetPasswordForm.vue?");
|
|
999
|
+
|
|
1000
|
+
/***/ }),
|
|
1001
|
+
|
|
969
1002
|
/***/ "./src/components/bf-login/index.vue?vue&type=script&lang=js":
|
|
970
1003
|
/*!*******************************************************************!*\
|
|
971
1004
|
!*** ./src/components/bf-login/index.vue?vue&type=script&lang=js ***!
|
|
@@ -1296,6 +1329,17 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _nod
|
|
|
1296
1329
|
|
|
1297
1330
|
/***/ }),
|
|
1298
1331
|
|
|
1332
|
+
/***/ "./src/components/bf-login/LoginResetPasswordForm.vue?vue&type=style&index=0&id=6e5201d8&lang=scss&scoped=true":
|
|
1333
|
+
/*!*********************************************************************************************************************!*\
|
|
1334
|
+
!*** ./src/components/bf-login/LoginResetPasswordForm.vue?vue&type=style&index=0&id=6e5201d8&lang=scss&scoped=true ***!
|
|
1335
|
+
\*********************************************************************************************************************/
|
|
1336
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1337
|
+
|
|
1338
|
+
"use strict";
|
|
1339
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_clonedRuleSet_22_use_0_node_modules_vue_cli_service_node_modules_css_loader_dist_cjs_js_clonedRuleSet_22_use_1_node_modules_vue_vue_loader_v15_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_dist_cjs_js_clonedRuleSet_22_use_2_node_modules_sass_loader_dist_cjs_js_clonedRuleSet_22_use_3_node_modules_vue_vue_loader_v15_lib_index_js_vue_loader_options_LoginResetPasswordForm_vue_vue_type_style_index_0_id_6e5201d8_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!../../../node_modules/@vue/cli-service/node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!../../../node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!../../../node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!../../../node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!../../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./LoginResetPasswordForm.vue?vue&type=style&index=0&id=6e5201d8&lang=scss&scoped=true */ \"./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/@vue/cli-service/node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/bf-login/LoginResetPasswordForm.vue?vue&type=style&index=0&id=6e5201d8&lang=scss&scoped=true\");\n\n\n//# sourceURL=webpack://@bilfenyazilimekibi/bilpack/./src/components/bf-login/LoginResetPasswordForm.vue?");
|
|
1340
|
+
|
|
1341
|
+
/***/ }),
|
|
1342
|
+
|
|
1299
1343
|
/***/ "./src/components/bf-login/index.vue?vue&type=style&index=0&id=bd58e99a&lang=scss":
|
|
1300
1344
|
/*!****************************************************************************************!*\
|
|
1301
1345
|
!*** ./src/components/bf-login/index.vue?vue&type=style&index=0&id=bd58e99a&lang=scss ***!
|
|
@@ -1681,6 +1725,17 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpac
|
|
|
1681
1725
|
|
|
1682
1726
|
/***/ }),
|
|
1683
1727
|
|
|
1728
|
+
/***/ "./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/bf-login/LoginResetPasswordForm.vue?vue&type=template&id=6e5201d8&scoped=true":
|
|
1729
|
+
/*!****************************************************************************************************************************************************************************************************************************************************************!*\
|
|
1730
|
+
!*** ./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/bf-login/LoginResetPasswordForm.vue?vue&type=template&id=6e5201d8&scoped=true ***!
|
|
1731
|
+
\****************************************************************************************************************************************************************************************************************************************************************/
|
|
1732
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1733
|
+
|
|
1734
|
+
"use strict";
|
|
1735
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ render: () => (/* binding */ render),\n/* harmony export */ staticRenderFns: () => (/* binding */ staticRenderFns)\n/* harmony export */ });\nvar render = function render() {\n var _vm = this,\n _c = _vm._self._c\n return _c(\n \"div\",\n { staticClass: \"login-reset-password-form\" },\n [\n _c(\n \"v-form\",\n {\n on: {\n submit: function ($event) {\n $event.preventDefault()\n return _vm.handleSubmit.apply(null, arguments)\n },\n },\n model: {\n value: _vm.valid,\n callback: function ($$v) {\n _vm.valid = $$v\n },\n expression: \"valid\",\n },\n },\n [\n _c(\"p\", { staticClass: \"desc-title\" }, [\n _vm._v(\"Yeni şifre belirle\"),\n ]),\n _c(\"p\", { staticClass: \"desc\" }, [\n _vm._v(\n \" Hesabınız için yeni bir şifre oluşturun. Şifreniz en az 4 karakter olmalıdır. \"\n ),\n ]),\n _c(\"v-text-field\", {\n staticClass: \"mb-2\",\n attrs: {\n outlined: \"\",\n filled: _vm.form.newPassword === \"\",\n label: \"Yeni şifre\",\n name: \"newPassword\",\n type: _vm.showPassword ? \"text\" : \"password\",\n \"error-messages\": _vm.errors.newPassword,\n \"aria-label\": \"Yeni şifre\",\n },\n on: {\n keyup: function ($event) {\n if (\n !$event.type.indexOf(\"key\") &&\n _vm._k($event.keyCode, \"enter\", 13, $event.key, \"Enter\")\n )\n return null\n return _vm.handleSubmit()\n },\n },\n scopedSlots: _vm._u([\n {\n key: \"prepend-inner\",\n fn: function () {\n return [\n _c(\"v-icon\", { attrs: { small: \"\" } }, [\n _vm._v(\"fi-rr-lock\"),\n ]),\n ]\n },\n proxy: true,\n },\n {\n key: \"append\",\n fn: function () {\n return [\n _c(\n \"div\",\n {\n staticClass: \"cursor-pointer\",\n attrs: {\n role: \"button\",\n tabindex: \"0\",\n \"aria-label\": \"Şifreyi göster veya gizle\",\n },\n on: {\n click: function ($event) {\n _vm.showPassword = !_vm.showPassword\n },\n keydown: [\n function ($event) {\n if (\n !$event.type.indexOf(\"key\") &&\n _vm._k(\n $event.keyCode,\n \"enter\",\n 13,\n $event.key,\n \"Enter\"\n )\n )\n return null\n _vm.showPassword = !_vm.showPassword\n },\n function ($event) {\n if (\n !$event.type.indexOf(\"key\") &&\n _vm._k(\n $event.keyCode,\n \"space\",\n 32,\n $event.key,\n [\" \", \"Spacebar\"]\n )\n )\n return null\n $event.preventDefault()\n _vm.showPassword = !_vm.showPassword\n },\n ],\n },\n },\n [\n _vm.showPassword\n ? _c(\"v-icon\", { attrs: { small: \"\" } }, [\n _vm._v(\"fi-rr-eye\"),\n ])\n : _c(\"v-icon\", { attrs: { small: \"\" } }, [\n _vm._v(\"fi-rr-eye-crossed\"),\n ]),\n ],\n 1\n ),\n ]\n },\n proxy: true,\n },\n ]),\n model: {\n value: _vm.form.newPassword,\n callback: function ($$v) {\n _vm.$set(_vm.form, \"newPassword\", $$v)\n },\n expression: \"form.newPassword\",\n },\n }),\n _c(\"v-text-field\", {\n attrs: {\n outlined: \"\",\n filled: _vm.form.confirmPassword === \"\",\n label: \"Yeni şifre (tekrar)\",\n name: \"confirmPassword\",\n type: _vm.showConfirmPassword ? \"text\" : \"password\",\n \"error-messages\": _vm.errors.confirmPassword,\n \"aria-label\": \"Yeni şifre tekrar\",\n },\n on: {\n keyup: function ($event) {\n if (\n !$event.type.indexOf(\"key\") &&\n _vm._k($event.keyCode, \"enter\", 13, $event.key, \"Enter\")\n )\n return null\n return _vm.handleSubmit()\n },\n },\n scopedSlots: _vm._u([\n {\n key: \"prepend-inner\",\n fn: function () {\n return [\n _c(\"v-icon\", { attrs: { small: \"\" } }, [\n _vm._v(\"fi-rr-lock\"),\n ]),\n ]\n },\n proxy: true,\n },\n {\n key: \"append\",\n fn: function () {\n return [\n _c(\n \"div\",\n {\n staticClass: \"cursor-pointer\",\n attrs: {\n role: \"button\",\n tabindex: \"0\",\n \"aria-label\": \"Şifreyi göster veya gizle\",\n },\n on: {\n click: function ($event) {\n _vm.showConfirmPassword = !_vm.showConfirmPassword\n },\n keydown: [\n function ($event) {\n if (\n !$event.type.indexOf(\"key\") &&\n _vm._k(\n $event.keyCode,\n \"enter\",\n 13,\n $event.key,\n \"Enter\"\n )\n )\n return null\n _vm.showConfirmPassword = !_vm.showConfirmPassword\n },\n function ($event) {\n if (\n !$event.type.indexOf(\"key\") &&\n _vm._k(\n $event.keyCode,\n \"space\",\n 32,\n $event.key,\n [\" \", \"Spacebar\"]\n )\n )\n return null\n $event.preventDefault()\n _vm.showConfirmPassword = !_vm.showConfirmPassword\n },\n ],\n },\n },\n [\n _vm.showConfirmPassword\n ? _c(\"v-icon\", { attrs: { small: \"\" } }, [\n _vm._v(\"fi-rr-eye\"),\n ])\n : _c(\"v-icon\", { attrs: { small: \"\" } }, [\n _vm._v(\"fi-rr-eye-crossed\"),\n ]),\n ],\n 1\n ),\n ]\n },\n proxy: true,\n },\n ]),\n model: {\n value: _vm.form.confirmPassword,\n callback: function ($$v) {\n _vm.$set(_vm.form, \"confirmPassword\", $$v)\n },\n expression: \"form.confirmPassword\",\n },\n }),\n _c(\"div\", { staticClass: \"form-action\" }, [\n _c(\"div\", { staticClass: \"forgotten-password\" }, [\n _c(\n \"span\",\n {\n staticClass: \"forgotten-password-text\",\n attrs: {\n role: \"link\",\n tabindex: \"0\",\n \"aria-label\": \"Giriş sayfasına dön\",\n },\n on: {\n click: _vm.handleGoToLogin,\n keydown: function ($event) {\n if (\n !$event.type.indexOf(\"key\") &&\n _vm._k($event.keyCode, \"enter\", 13, $event.key, \"Enter\")\n )\n return null\n return _vm.handleGoToLogin.apply(null, arguments)\n },\n },\n },\n [_vm._v(\" Giriş Yap \")]\n ),\n ]),\n ]),\n _c(\n \"div\",\n { staticClass: \"submit\" },\n [\n _c(\n \"v-btn\",\n {\n attrs: {\n depressed: \"\",\n color: \"primaryBtn m-auto\",\n type: \"submit\",\n loading: _vm.isSubmitting,\n disabled: !_vm.canSubmit,\n },\n on: { click: _vm.handleSubmit },\n },\n [_vm._v(\" Şifreyi kaydet \")]\n ),\n ],\n 1\n ),\n ],\n 1\n ),\n _vm.errorMessage\n ? _c(\n \"div\",\n {\n staticClass: \"bf-info bf-info-reset\",\n staticStyle: { \"margin-top\": \"32px\" },\n },\n [\n _c(\n \"div\",\n {\n staticClass: \"close-icon\",\n attrs: {\n role: \"button\",\n tabindex: \"0\",\n \"aria-label\": \"Hatayı kapat\",\n },\n on: {\n click: function ($event) {\n _vm.errorMessage = \"\"\n },\n },\n },\n [_c(\"v-icon\", [_vm._v(\"mdi-close\")])],\n 1\n ),\n _c(\n \"div\",\n { staticClass: \"icon\" },\n [_c(\"v-icon\", [_vm._v(\"mdi-information-outline\")])],\n 1\n ),\n _c(\"div\", { staticClass: \"content\" }, [\n _c(\"h3\", { staticClass: \"title\" }, [\n _vm._v(\"Şifre sıfırlanamadı\"),\n ]),\n _c(\"p\", {\n staticClass: \"text\",\n domProps: { innerHTML: _vm._s(_vm.errorMessage) },\n }),\n ]),\n ]\n )\n : _vm._e(),\n ],\n 1\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\n\n\n//# sourceURL=webpack://@bilfenyazilimekibi/bilpack/./src/components/bf-login/LoginResetPasswordForm.vue?./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet%5B1%5D.rules%5B2%5D!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options");
|
|
1736
|
+
|
|
1737
|
+
/***/ }),
|
|
1738
|
+
|
|
1684
1739
|
/***/ "./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/bf-login/index.vue?vue&type=template&id=bd58e99a":
|
|
1685
1740
|
/*!***********************************************************************************************************************************************************************************************************************************!*\
|
|
1686
1741
|
!*** ./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/bf-login/index.vue?vue&type=template&id=bd58e99a ***!
|
|
@@ -1688,7 +1743,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpac
|
|
|
1688
1743
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1689
1744
|
|
|
1690
1745
|
"use strict";
|
|
1691
|
-
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ render: () => (/* binding */ render),\n/* harmony export */ staticRenderFns: () => (/* binding */ staticRenderFns)\n/* harmony export */ });\nvar render = function render() {\n var _vm = this,\n _c = _vm._self._c\n return _c(\n \"div\",\n {\n staticClass: \"app-login\",\n class: { alternate_bn: _vm.$isPlatform(\"bilnet\") },\n attrs: { id: \"login\" },\n },\n [\n _c(\"img\", {\n staticClass: \"login-img\",\n attrs: { src: _vm.generalSettings.banners, alt: \"banner\" },\n }),\n _c(\"img\", {\n staticClass: \"bilfen-logo\",\n attrs: {\n width: \"100\",\n src: _vm.generalSettings.bilfenLogo,\n alt: \"logo\",\n },\n }),\n _c(\"div\", { staticClass: \"login-content\" }, [\n _c(\"div\", { staticClass: \"inner\" }, [\n _c(\"div\", { staticClass: \"logo\" }, [\n _c(\"img\", {\n staticClass: \"logo-img\",\n attrs: { src: _vm.generalSettings.logo, alt: \"logo\" },\n }),\n ]),\n _c(\n \"div\",\n { staticClass: \"form bf-form\" },\n [\n !_vm.isForgottenPassword\n ? _c(\n \"v-form\",\n {\n model: {\n value: _vm.valid,\n callback: function ($$v) {\n _vm.valid = $$v\n },\n expression: \"valid\",\n },\n },\n [\n _c(\"p\", { staticClass: \"desc\" }, [\n _vm._v(\n \" Bilgilerinizi eksiksiz giriniz. Giriş bilgilerinizi hatırlamıyorsanız şifremi unuttum ile destek talebinde bulunabilirsiniz. \"\n ),\n ]),\n _c(\"v-text-field\", {\n staticClass: \"mb-2\",\n attrs: {\n required: \"\",\n outlined: \"\",\n rules: _vm.tcRules,\n filled: _vm.form.tc === \"\",\n label: \"T.C. Kimlik Numarası\",\n name: \"tc\",\n type: \"text\",\n },\n on: {\n keyup: function ($event) {\n if (\n !$event.type.indexOf(\"key\") &&\n _vm._k(\n $event.keyCode,\n \"enter\",\n 13,\n $event.key,\n \"Enter\"\n )\n )\n return null\n return _vm.submit()\n },\n },\n scopedSlots: _vm._u(\n [\n {\n key: \"prepend-inner\",\n fn: function () {\n return [\n _c(\"v-icon\", { attrs: { small: \"\" } }, [\n _vm._v(\"fi-rr-user\"),\n ]),\n ]\n },\n proxy: true,\n },\n ],\n null,\n false,\n 863596380\n ),\n model: {\n value: _vm.form.tc,\n callback: function ($$v) {\n _vm.$set(_vm.form, \"tc\", $$v)\n },\n expression: \"form.tc\",\n },\n }),\n _c(\n \"v-text-field\",\n {\n attrs: {\n filled: _vm.form.password === \"\",\n outlined: \"\",\n required: \"\",\n rules: _vm.passwordRules,\n id: \"password\",\n label: \"Şifre\",\n name: \"password\",\n type: _vm.showPassword ? \"text\" : \"password\",\n },\n on: {\n keyup: function ($event) {\n if (\n !$event.type.indexOf(\"key\") &&\n _vm._k(\n $event.keyCode,\n \"enter\",\n 13,\n $event.key,\n \"Enter\"\n )\n )\n return null\n return _vm.submit()\n },\n },\n scopedSlots: _vm._u(\n [\n {\n key: \"prepend-inner\",\n fn: function () {\n return [\n _c(\"v-icon\", { attrs: { small: \"\" } }, [\n _vm._v(\"fi-rr-lock\"),\n ]),\n ]\n },\n proxy: true,\n },\n ],\n null,\n false,\n 2691192998\n ),\n model: {\n value: _vm.form.password,\n callback: function ($$v) {\n _vm.$set(_vm.form, \"password\", $$v)\n },\n expression: \"form.password\",\n },\n },\n [\n _c(\"template\", { slot: \"append\" }, [\n _c(\n \"div\",\n {\n staticClass: \"cursor-pointer\",\n on: {\n click: function ($event) {\n _vm.showPassword = !_vm.showPassword\n },\n },\n },\n [\n _vm.showPassword\n ? _c(\"v-icon\", { attrs: { small: \"\" } }, [\n _vm._v(\"fi-rr-eye\"),\n ])\n : _c(\"v-icon\", { attrs: { small: \"\" } }, [\n _vm._v(\"fi-rr-eye-crossed\"),\n ]),\n ],\n 1\n ),\n ]),\n ],\n 2\n ),\n _c(\"div\", { staticClass: \"form-info\" }),\n _c(\"div\", { staticClass: \"form-action\" }, [\n _c(\"div\", { staticClass: \"forgotten-password\" }, [\n _c(\n \"p\",\n {\n staticClass: \"forgotten-password-text\",\n on: {\n click: function ($event) {\n _vm.isForgottenPassword =\n !_vm.isForgottenPassword\n },\n },\n },\n [_vm._v(\" Şifremi Unuttum\")]\n ),\n ]),\n ]),\n _c(\n \"div\",\n { staticClass: \"submit\" },\n [\n _c(\n \"v-btn\",\n {\n attrs: {\n depressed: \"\",\n color: \"primaryBtn m-auto\",\n disabled:\n _vm.form.tc === \"\" ||\n _vm.form.password === \"\" ||\n _vm.submitBtnLoader,\n loading: _vm.submitBtnLoader,\n },\n on: {\n click: function ($event) {\n return _vm.submit()\n },\n },\n },\n [_vm._v(\"Giriş Yap\")]\n ),\n ],\n 1\n ),\n ],\n 1\n )\n : _c(\n \"v-form\",\n [\n _c(\"p\", { staticClass: \"desc-title\" }, [\n _vm._v(\" Şifreni mi unuttun ? \"),\n ]),\n _c(\"p\", { staticClass: \"desc\" }, [\n _vm._v(\n \" E-postana gönderdiğimiz şifre sıfırlama bağlantısından yeni şifre oluşturabilirsin. \"\n ),\n ]),\n _c(\"v-text-field\", {\n staticClass: \"mb-2\",\n attrs: {\n required: \"\",\n outlined: \"\",\n filled: _vm.form.eMail === \"\",\n label: \"E posta adresi\",\n name: \"email\",\n type: \"text\",\n },\n on: {\n keyup: function ($event) {\n if (\n !$event.type.indexOf(\"key\") &&\n _vm._k(\n $event.keyCode,\n \"enter\",\n 13,\n $event.key,\n \"Enter\"\n )\n )\n return null\n return _vm.submit()\n },\n },\n scopedSlots: _vm._u([\n {\n key: \"prepend-inner\",\n fn: function () {\n return [\n _c(\n \"div\",\n [\n _c(\"v-icon\", { attrs: { small: \"\" } }, [\n _vm._v(\"fi-rr-envelope-open\"),\n ]),\n ],\n 1\n ),\n ]\n },\n proxy: true,\n },\n ]),\n model: {\n value: _vm.form.eMail,\n callback: function ($$v) {\n _vm.$set(_vm.form, \"eMail\", $$v)\n },\n expression: \"form.eMail\",\n },\n }),\n _c(\n \"div\",\n {\n staticClass: \"form-action\",\n staticStyle: { \"justify-content\": \"flex-end\" },\n },\n [\n _c(\"div\", { staticClass: \"forgotten-password\" }, [\n _c(\n \"p\",\n {\n staticClass: \"forgotten-password-text\",\n on: {\n click: function ($event) {\n _vm.isForgottenPassword =\n !_vm.isForgottenPassword\n },\n },\n },\n [_vm._v(\"Giriş Sayfasına Dön\")]\n ),\n ]),\n ]\n ),\n _c(\n \"div\",\n { staticClass: \"submit\" },\n [\n _c(\n \"v-btn\",\n {\n attrs: {\n depressed: \"\",\n color: \"primary m-auto\",\n disabled:\n _vm.form.eMail === \"\" || _vm.forgetBtnLoader,\n loading: _vm.forgetBtnLoader,\n },\n on: {\n click: function ($event) {\n return _vm.resetPassword()\n },\n },\n },\n [_vm._v(\"Şifremi Sıfırla\")]\n ),\n ],\n 1\n ),\n ],\n 1\n ),\n _vm.errorLogin\n ? _c(\n \"div\",\n {\n staticClass: \"bf-info\",\n staticStyle: { \"margin-top\": \"32px\" },\n },\n [\n _c(\n \"div\",\n {\n staticClass: \"close-icon\",\n on: {\n click: function ($event) {\n _vm.errorLogin = false\n },\n },\n },\n [_c(\"v-icon\", [_vm._v(\"mdi-close\")])],\n 1\n ),\n _c(\n \"div\",\n { staticClass: \"icon\" },\n [_c(\"v-icon\", [_vm._v(\"mdi-information-outline\")])],\n 1\n ),\n _c(\"div\", { staticClass: \"content\" }, [\n _c(\"h3\", {\n staticClass: \"title\",\n domProps: { innerHTML: _vm._s(_vm.errorTitle) },\n }),\n _vm.errorText\n ? _c(\"p\", {\n staticClass: \"text\",\n domProps: { innerHTML: _vm._s(_vm.errorText) },\n })\n : _c(\"p\", { staticClass: \"text\" }, [\n _vm._v(\n \" Lütfen tekrar deneyiniz. Giriş bilgilerinizi hatırlamıyorsanız şifremi unuttum ile destek talebinde bulunabilirsiniz. \"\n ),\n ]),\n ]),\n ]\n )\n : _vm._e(),\n ],\n 1\n ),\n ]),\n ]),\n ]\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\n\n\n//# sourceURL=webpack://@bilfenyazilimekibi/bilpack/./src/components/bf-login/index.vue?./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet%5B1%5D.rules%5B2%5D!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options");
|
|
1746
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ render: () => (/* binding */ render),\n/* harmony export */ staticRenderFns: () => (/* binding */ staticRenderFns)\n/* harmony export */ });\nvar render = function render() {\n var _vm = this,\n _c = _vm._self._c\n return _c(\n \"div\",\n {\n staticClass: \"app-login\",\n class: { alternate_bn: _vm.$isPlatform(\"bilnet\") },\n attrs: { id: \"login\" },\n },\n [\n _c(\"img\", {\n staticClass: \"login-img\",\n attrs: { src: _vm.generalSettings.banners, alt: \"banner\" },\n }),\n _c(\"img\", {\n staticClass: \"bilfen-logo\",\n attrs: {\n width: \"100\",\n src: _vm.generalSettings.bilfenLogo,\n alt: \"logo\",\n },\n }),\n _c(\"div\", { staticClass: \"login-content\" }, [\n _c(\"div\", { staticClass: \"inner\" }, [\n _c(\"div\", { staticClass: \"logo\" }, [\n _c(\"img\", {\n staticClass: \"logo-img\",\n attrs: { src: _vm.generalSettings.logo, alt: \"logo\" },\n }),\n ]),\n _c(\n \"div\",\n { staticClass: \"form bf-form\" },\n [\n _vm.isResetPasswordMode\n ? _c(\"LoginResetPasswordForm\", {\n attrs: { token: _vm.resetPasswordToken },\n })\n : !_vm.isForgottenPassword\n ? _c(\n \"v-form\",\n {\n model: {\n value: _vm.valid,\n callback: function ($$v) {\n _vm.valid = $$v\n },\n expression: \"valid\",\n },\n },\n [\n _c(\"p\", { staticClass: \"desc\" }, [\n _vm._v(\n \" Bilgilerinizi eksiksiz giriniz. Giriş bilgilerinizi hatırlamıyorsanız şifremi unuttum ile destek talebinde bulunabilirsiniz. \"\n ),\n ]),\n _c(\"v-text-field\", {\n staticClass: \"mb-2\",\n attrs: {\n required: \"\",\n outlined: \"\",\n rules: _vm.tcRules,\n filled: _vm.form.tc === \"\",\n label: \"T.C. Kimlik Numarası\",\n name: \"tc\",\n type: \"text\",\n },\n on: {\n keyup: function ($event) {\n if (\n !$event.type.indexOf(\"key\") &&\n _vm._k(\n $event.keyCode,\n \"enter\",\n 13,\n $event.key,\n \"Enter\"\n )\n )\n return null\n return _vm.submit()\n },\n },\n scopedSlots: _vm._u([\n {\n key: \"prepend-inner\",\n fn: function () {\n return [\n _c(\"v-icon\", { attrs: { small: \"\" } }, [\n _vm._v(\"fi-rr-user\"),\n ]),\n ]\n },\n proxy: true,\n },\n ]),\n model: {\n value: _vm.form.tc,\n callback: function ($$v) {\n _vm.$set(_vm.form, \"tc\", $$v)\n },\n expression: \"form.tc\",\n },\n }),\n _c(\n \"v-text-field\",\n {\n attrs: {\n filled: _vm.form.password === \"\",\n outlined: \"\",\n required: \"\",\n rules: _vm.passwordRules,\n id: \"password\",\n label: \"Şifre\",\n name: \"password\",\n type: _vm.showPassword ? \"text\" : \"password\",\n },\n on: {\n keyup: function ($event) {\n if (\n !$event.type.indexOf(\"key\") &&\n _vm._k(\n $event.keyCode,\n \"enter\",\n 13,\n $event.key,\n \"Enter\"\n )\n )\n return null\n return _vm.submit()\n },\n },\n scopedSlots: _vm._u([\n {\n key: \"prepend-inner\",\n fn: function () {\n return [\n _c(\"v-icon\", { attrs: { small: \"\" } }, [\n _vm._v(\"fi-rr-lock\"),\n ]),\n ]\n },\n proxy: true,\n },\n ]),\n model: {\n value: _vm.form.password,\n callback: function ($$v) {\n _vm.$set(_vm.form, \"password\", $$v)\n },\n expression: \"form.password\",\n },\n },\n [\n _c(\"template\", { slot: \"append\" }, [\n _c(\n \"div\",\n {\n staticClass: \"cursor-pointer\",\n on: {\n click: function ($event) {\n _vm.showPassword = !_vm.showPassword\n },\n },\n },\n [\n _vm.showPassword\n ? _c(\"v-icon\", { attrs: { small: \"\" } }, [\n _vm._v(\"fi-rr-eye\"),\n ])\n : _c(\"v-icon\", { attrs: { small: \"\" } }, [\n _vm._v(\"fi-rr-eye-crossed\"),\n ]),\n ],\n 1\n ),\n ]),\n ],\n 2\n ),\n _c(\"div\", { staticClass: \"form-info\" }),\n _c(\"div\", { staticClass: \"form-action\" }, [\n _c(\"div\", { staticClass: \"forgotten-password\" }, [\n _c(\n \"p\",\n {\n staticClass: \"forgotten-password-text\",\n on: {\n click: function ($event) {\n _vm.isForgottenPassword =\n !_vm.isForgottenPassword\n },\n },\n },\n [_vm._v(\" Şifremi Unuttum\")]\n ),\n ]),\n ]),\n _c(\n \"div\",\n { staticClass: \"submit\" },\n [\n _c(\n \"v-btn\",\n {\n attrs: {\n depressed: \"\",\n color: \"primaryBtn m-auto\",\n disabled:\n _vm.form.tc === \"\" ||\n _vm.form.password === \"\" ||\n _vm.submitBtnLoader,\n loading: _vm.submitBtnLoader,\n },\n on: {\n click: function ($event) {\n return _vm.submit()\n },\n },\n },\n [_vm._v(\"Giriş Yap\")]\n ),\n ],\n 1\n ),\n ],\n 1\n )\n : _c(\n \"v-form\",\n [\n _c(\"p\", { staticClass: \"desc-title\" }, [\n _vm._v(\" Şifreni mi unuttun ? \"),\n ]),\n _c(\"p\", { staticClass: \"desc\" }, [\n _vm._v(\n \" E-postana gönderdiğimiz şifre sıfırlama bağlantısından yeni şifre oluşturabilirsin. \"\n ),\n ]),\n _c(\"v-text-field\", {\n staticClass: \"mb-2\",\n attrs: {\n required: \"\",\n outlined: \"\",\n filled: _vm.form.eMail === \"\",\n label: \"E posta adresi\",\n name: \"email\",\n type: \"text\",\n },\n on: {\n keyup: function ($event) {\n if (\n !$event.type.indexOf(\"key\") &&\n _vm._k(\n $event.keyCode,\n \"enter\",\n 13,\n $event.key,\n \"Enter\"\n )\n )\n return null\n return _vm.submit()\n },\n },\n scopedSlots: _vm._u([\n {\n key: \"prepend-inner\",\n fn: function () {\n return [\n _c(\n \"div\",\n [\n _c(\"v-icon\", { attrs: { small: \"\" } }, [\n _vm._v(\"fi-rr-envelope-open\"),\n ]),\n ],\n 1\n ),\n ]\n },\n proxy: true,\n },\n ]),\n model: {\n value: _vm.form.eMail,\n callback: function ($$v) {\n _vm.$set(_vm.form, \"eMail\", $$v)\n },\n expression: \"form.eMail\",\n },\n }),\n _c(\n \"div\",\n {\n staticClass: \"form-action\",\n staticStyle: { \"justify-content\": \"flex-end\" },\n },\n [\n _c(\"div\", { staticClass: \"forgotten-password\" }, [\n _c(\n \"p\",\n {\n staticClass: \"forgotten-password-text\",\n on: {\n click: function ($event) {\n _vm.isForgottenPassword =\n !_vm.isForgottenPassword\n },\n },\n },\n [_vm._v(\"Giriş Sayfasına Dön\")]\n ),\n ]),\n ]\n ),\n _c(\n \"div\",\n { staticClass: \"submit\" },\n [\n _c(\n \"v-btn\",\n {\n attrs: {\n depressed: \"\",\n color: \"primary m-auto\",\n disabled:\n _vm.form.eMail === \"\" || _vm.forgetBtnLoader,\n loading: _vm.forgetBtnLoader,\n },\n on: {\n click: function ($event) {\n return _vm.resetPassword()\n },\n },\n },\n [_vm._v(\"Şifremi Sıfırla\")]\n ),\n ],\n 1\n ),\n ],\n 1\n ),\n !_vm.isResetPasswordMode && _vm.errorLogin\n ? _c(\n \"div\",\n {\n staticClass: \"bf-info\",\n staticStyle: { \"margin-top\": \"32px\" },\n },\n [\n _c(\n \"div\",\n {\n staticClass: \"close-icon\",\n on: {\n click: function ($event) {\n _vm.errorLogin = false\n },\n },\n },\n [_c(\"v-icon\", [_vm._v(\"mdi-close\")])],\n 1\n ),\n _c(\n \"div\",\n { staticClass: \"icon\" },\n [_c(\"v-icon\", [_vm._v(\"mdi-information-outline\")])],\n 1\n ),\n _c(\"div\", { staticClass: \"content\" }, [\n _c(\"h3\", {\n staticClass: \"title\",\n domProps: { innerHTML: _vm._s(_vm.errorTitle) },\n }),\n _vm.errorText\n ? _c(\"p\", {\n staticClass: \"text\",\n domProps: { innerHTML: _vm._s(_vm.errorText) },\n })\n : _c(\"p\", { staticClass: \"text\" }, [\n _vm._v(\n \" Lütfen tekrar deneyiniz. Giriş bilgilerinizi hatırlamıyorsanız şifremi unuttum ile destek talebinde bulunabilirsiniz. \"\n ),\n ]),\n ]),\n ]\n )\n : _vm._e(),\n ],\n 1\n ),\n ]),\n ]),\n ]\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\n\n\n//# sourceURL=webpack://@bilfenyazilimekibi/bilpack/./src/components/bf-login/index.vue?./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet%5B1%5D.rules%5B2%5D!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options");
|
|
1692
1747
|
|
|
1693
1748
|
/***/ }),
|
|
1694
1749
|
|
|
@@ -2033,6 +2088,17 @@ eval("__webpack_require__.r(__webpack_exports__);\n// extracted by mini-css-extr
|
|
|
2033
2088
|
|
|
2034
2089
|
/***/ }),
|
|
2035
2090
|
|
|
2091
|
+
/***/ "./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/@vue/cli-service/node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/bf-login/LoginResetPasswordForm.vue?vue&type=style&index=0&id=6e5201d8&lang=scss&scoped=true":
|
|
2092
|
+
/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
2093
|
+
!*** ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/@vue/cli-service/node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/bf-login/LoginResetPasswordForm.vue?vue&type=style&index=0&id=6e5201d8&lang=scss&scoped=true ***!
|
|
2094
|
+
\**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
2095
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
2096
|
+
|
|
2097
|
+
"use strict";
|
|
2098
|
+
eval("__webpack_require__.r(__webpack_exports__);\n// extracted by mini-css-extract-plugin\n\n\n//# sourceURL=webpack://@bilfenyazilimekibi/bilpack/./src/components/bf-login/LoginResetPasswordForm.vue?./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use%5B0%5D!./node_modules/@vue/cli-service/node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use%5B1%5D!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use%5B2%5D!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use%5B3%5D!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options");
|
|
2099
|
+
|
|
2100
|
+
/***/ }),
|
|
2101
|
+
|
|
2036
2102
|
/***/ "./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/@vue/cli-service/node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/bf-login/index.vue?vue&type=style&index=0&id=bd58e99a&lang=scss":
|
|
2037
2103
|
/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
2038
2104
|
!*** ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/@vue/cli-service/node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/bf-login/index.vue?vue&type=style&index=0&id=bd58e99a&lang=scss ***!
|