25 lines
899 B
PHP
25 lines
899 B
PHP
{{-- Footer Sidebar - Solo info app essenziali --}}
|
|
<div class="p-2 border-top border-primary text-center">
|
|
{{-- Info App --}}
|
|
<small class="text-muted">
|
|
© 2025 NetGesCon - v2.1.0<br>
|
|
<a href="#" class="text-decoration-none" onclick="openSupport()">Supporto</a> •
|
|
<a href="#" class="text-decoration-none" onclick="openContacts()">Contatti</a> •
|
|
<a href="#" class="text-decoration-none" onclick="openWebsite()">www.netgescon.it</a>
|
|
</small>
|
|
</div>
|
|
|
|
<script>
|
|
function openSupport() {
|
|
alert('Centro Assistenza NetGesCon\n\nEmail: supporto@netgescon.it\nTel: 06.123456789\nOrari: Lun-Ven 9:00-18:00');
|
|
}
|
|
|
|
function openContacts() {
|
|
alert('Contatti NetGesCon\n\nNetGesCon S.r.l.\nVia Roma 123, 00100 Roma\nP.IVA: 12345678901\ninfo@netgescon.it');
|
|
}
|
|
|
|
function openWebsite() {
|
|
window.open('https://www.netgescon.it', '_blank');
|
|
}
|
|
</script>
|