From f6091f1bb8c8195fdfbbf2b5d03929afb0c0c2e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=9Cmit=20Tun=C3=A7?= Date: Mon, 1 Jun 2026 08:09:32 +0300 Subject: [PATCH] feat: add company legal information section with clipboard copy functionality to intern dashboard --- .../front/career/intern_dashboard.blade.php | 83 +++++++++++++++++-- 1 file changed, 75 insertions(+), 8 deletions(-) diff --git a/resources/views/front/career/intern_dashboard.blade.php b/resources/views/front/career/intern_dashboard.blade.php index 5b2cd5c..93c9cac 100644 --- a/resources/views/front/career/intern_dashboard.blade.php +++ b/resources/views/front/career/intern_dashboard.blade.php @@ -179,15 +179,70 @@
@csrf - -
-
- - + + +
+
+ +
Şirket Legal Bilgilerimiz
-
- - +

+ Lütfen staj formunuzu doldururken şirketimize ait aşağıdaki resmi bilgileri kullanın. Sağdaki kopyalama butonlarını kullanarak bilgileri kolayca kopyalayabilirsiniz. +

+ +
+
+ Şirket Unvanı +
+ TRUNÇGİL TEKNOLOJİ SANAYİ VE TİCARET LİMİTED ŞİRKETİ + +
+
+ +
+ Adres +
+ Çamtepe Mah. Mahmut Tevfik Atay Bul. Gaziantep Teknopark No: 4A İç Kapı No: 1 Şahinbey / Gaziantep + +
+
+ +
+ Vergi Dairesi & No +
+ Şahinbey V.D. / 8591492435 + +
+
+ +
+ MERSİS No +
+ 0859149243500001 + +
+
+
+
+ +
+
+
+ + +
+
+ + +
@@ -315,6 +370,18 @@ document.addEventListener('DOMContentLoaded', function() { calculateEndDateFrontend(); }); + + function copyToClipboard(elementId, btn) { + const text = document.getElementById(elementId).textContent; + navigator.clipboard.writeText(text).then(() => { + const icon = btn.querySelector('i'); + const originalClass = icon.className; + icon.className = 'uil uil-check text-green-500'; + setTimeout(() => { + icon.className = originalClass; + }, 2000); + }); + }