Compare commits
2 Commits
master
...
new-develo
| Author | SHA1 | Date | |
|---|---|---|---|
| d8dc15ac48 | |||
| deb384a31e |
30
public/assets/css/additionalstyle.php
Normal file
30
public/assets/css/additionalstyle.php
Normal file
@ -0,0 +1,30 @@
|
||||
<style>
|
||||
body {
|
||||
background-image: none;
|
||||
/* Rimuovi il logo come sfondo del body */
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
body::before {
|
||||
content: "";
|
||||
position: fixed;
|
||||
top: 0%;
|
||||
/* Mantiene uno spazio verticale uniforme */
|
||||
left: 0%;
|
||||
width: 110%;
|
||||
/* Riduce la larghezza al 80% dello schermo */
|
||||
height: 110%;
|
||||
/* Riduce l'altezza al 80% dello schermo */
|
||||
background-image: url('assets/images/logobianco.png');
|
||||
/* Percorso del logo */
|
||||
background-repeat: no-repeat;
|
||||
background-position: center center;
|
||||
background-size: contain;
|
||||
/* Mantiene le proporzioni del logo */
|
||||
|
||||
/* Imposta la trasparenza del logo */
|
||||
z-index: -1;
|
||||
/* Assicura che il logo rimanga sotto i contenuti */
|
||||
}
|
||||
</style>
|
||||
BIN
public/assets/images/cimabackground.png
Normal file
BIN
public/assets/images/cimabackground.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.9 KiB |
BIN
public/assets/images/logobianco.png
Normal file
BIN
public/assets/images/logobianco.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 55 KiB |
BIN
public/assets/images/logonero.png
Normal file
BIN
public/assets/images/logonero.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 58 KiB |
BIN
public/assets/images/xcimac.png
Normal file
BIN
public/assets/images/xcimac.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 26 KiB |
25
public/back.php
Normal file
25
public/back.php
Normal file
@ -0,0 +1,25 @@
|
||||
<style>
|
||||
body {
|
||||
content: "";
|
||||
position: fixed;
|
||||
top: 0%;
|
||||
/* Mantiene uno spazio verticale uniforme */
|
||||
left: 0%;
|
||||
width: 100%;
|
||||
/* Riduce la larghezza al 80% dello schermo */
|
||||
height: 100%;
|
||||
/* Riduce l'altezza al 80% dello schermo */
|
||||
background-color: white;
|
||||
/* Sfondo bianco */
|
||||
background-image: url('assets/images/xcimac.png');
|
||||
/* Percorso del logo */
|
||||
background-repeat: no-repeat;
|
||||
background-position: center center;
|
||||
background-size: 35%;
|
||||
/* Mantiene le proporzioni del logo */
|
||||
|
||||
/* Imposta la trasparenza del logo */
|
||||
z-index: -1;
|
||||
/* Assicura che il logo rimanga sotto i contenuti */
|
||||
}
|
||||
</style>
|
||||
@ -62,6 +62,9 @@ $modulego->execute();
|
||||
<link href="assets/css/metisMenu.min.css" rel="stylesheet" type="text/css" />
|
||||
<link href="assets/css/app.min.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
<?php include('back.php'); ?>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
@ -167,57 +170,7 @@ unset($wa_repeatcount);
|
||||
</div><!--end card-->
|
||||
<?php } */ ?>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-lg-4">
|
||||
<div class="card card-body">
|
||||
<h4 class="card-title mt-0"><?php echo $newtrf; ?></h4>
|
||||
|
||||
<a href="typeofcertificate.php?varcertificate=0&certotherclient=N" class="btn btn-primary"><?php echo $proceed; ?></a>
|
||||
</div><!--end card-->
|
||||
</div><!--end col-->
|
||||
|
||||
<div class="col-lg-4 ">
|
||||
<div class="card card-body text-center">
|
||||
<h4 class="card-title mt-0"><?php echo $newtrfforclient; ?></h4>
|
||||
|
||||
<a href="typeofcertificate.php?varcertificate=0&certotherclient=Y" class="btn btn-primary"><?php echo $proceed; ?></a>
|
||||
</div><!--end card-->
|
||||
</div><!--end col-->
|
||||
|
||||
<div class="col-lg-4">
|
||||
<div class="card card-body text-right">
|
||||
<h4 class="card-title mt-0"><?php echo $techdossier; ?></h4>
|
||||
|
||||
<a href="#" class="btn btn-primary"><?php echo $proceed; ?></a>
|
||||
</div><!--end card-->
|
||||
</div><!--end col-->
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-lg-4">
|
||||
<div class="card card-body">
|
||||
<h4 class="card-title mt-0"><?php echo $historicaltrf; ?></h4>
|
||||
|
||||
<a href="archivetrf.php" class="btn btn-danger"><?php echo $proceed; ?></a>
|
||||
</div><!--end card-->
|
||||
</div><!--end col-->
|
||||
|
||||
<div class="col-lg-4 ">
|
||||
<div class="card card-body text-center">
|
||||
<h4 class="card-title mt-0"><?php echo $helpdocument; ?></h4>
|
||||
|
||||
<a href="downloadfile.php" class="btn btn-danger"><?php echo $proceed; ?></a>
|
||||
</div><!--end card-->
|
||||
</div><!--end col-->
|
||||
|
||||
<div class="col-lg-4">
|
||||
<div class="card card-body text-right">
|
||||
<h4 class="card-title mt-0"><?php echo $techdossierark; ?></h4>
|
||||
|
||||
<a href="#" class="btn btn-danger"><?php echo $proceed; ?></a>
|
||||
</div><!--end card-->
|
||||
</div><!--end col-->
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
@ -236,6 +189,81 @@ unset($wa_repeatcount);
|
||||
</div> -->
|
||||
|
||||
|
||||
<div class="card" style="background-color: rgba(255, 255, 255, 0);">
|
||||
<div class="card-body">
|
||||
<div class="container-fluid py-3" style="background-color: #ffffff; border-radius: 12px;">
|
||||
<div class="row text-center">
|
||||
<!-- Card 1 -->
|
||||
<div class="col-lg-4 mb-4">
|
||||
<a href="typeofcertificate.php?varcertificate=0&certotherclient=N" class="card shadow-sm border-0 text-decoration-none hover-effect"
|
||||
style="background-color: #EFBC86; border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease;">
|
||||
<div class="card-body d-flex align-items-center justify-content-center py-4">
|
||||
<i class="fas fa-file-alt fa-2x text-primary me-3"></i>
|
||||
<h4 class="card-title text-dark fw-bold mb-0"><?php echo $newtrf; ?></h4>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<!-- Card 2 -->
|
||||
<div class="col-lg-4 mb-4">
|
||||
<a href="typeofcertificate.php?varcertificate=0&certotherclient=Y" class="card shadow-sm border-0 text-decoration-none hover-effect"
|
||||
style="background-color: #fde8e8; border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease;">
|
||||
<div class="card-body d-flex align-items-center justify-content-center py-4">
|
||||
<i class="fas fa-user-friends fa-2x text-danger me-3"></i>
|
||||
<h4 class="card-title text-dark fw-bold mb-0"><?php echo $newtrfforclient; ?></h4>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<!-- Card 3 -->
|
||||
<div class="col-lg-4 mb-4">
|
||||
<a href="#" class="card shadow-sm border-0 text-decoration-none hover-effect"
|
||||
style="background-color: #e8f5e9; border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease;">
|
||||
<div class="card-body d-flex align-items-center justify-content-center py-4">
|
||||
<i class="fas fa-cogs fa-2x text-success me-3"></i>
|
||||
<h4 class="card-title text-dark fw-bold mb-0"><?php echo $techdossier; ?></h4>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row text-center">
|
||||
<!-- Card 4 -->
|
||||
<div class="col-lg-4 mb-4">
|
||||
<a href="archivetrf.php" class="card shadow-sm border-0 text-decoration-none hover-effect"
|
||||
style="background-color: #fff3e0; border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease;">
|
||||
<div class="card-body d-flex align-items-center justify-content-center py-4">
|
||||
<i class="fas fa-archive fa-2x text-warning me-3"></i>
|
||||
<h4 class="card-title text-dark fw-bold mb-0"><?php echo $historicaltrf; ?></h4>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<!-- Card 5 -->
|
||||
<div class="col-lg-4 mb-4">
|
||||
<a href="downloadfile.php" class="card shadow-sm border-0 text-decoration-none hover-effect"
|
||||
style="background-color: #ede7f6; border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease;">
|
||||
<div class="card-body d-flex align-items-center justify-content-center py-4">
|
||||
<i class="fas fa-question-circle fa-2x text-purple me-3"></i>
|
||||
<h4 class="card-title text-dark fw-bold mb-0"><?php echo $helpdocument; ?></h4>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<!-- Card 6 -->
|
||||
<div class="col-lg-4 mb-4">
|
||||
<a href="#" class="card shadow-sm border-0 text-decoration-none hover-effect"
|
||||
style="background-color: #fbe9e7; border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease;">
|
||||
<div class="card-body d-flex align-items-center justify-content-center py-4">
|
||||
<i class="fas fa-archive fa-2x text-danger me-3"></i>
|
||||
<h4 class="card-title text-dark fw-bold mb-0"><?php echo $techdossierark; ?></h4>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
@ -690,8 +690,8 @@ $partids[] = '0';
|
||||
if (missingMandatoryParts.length > 0) {
|
||||
Swal.fire({
|
||||
icon: "error",
|
||||
title: "Parti Obbligatorie Mancanti",
|
||||
text: "Le seguenti parti sono obbligatorie e devono essere inserite: " + missingMandatoryParts.join(", "),
|
||||
title: "Parti Obbligatorie Mancanti/Missing Mandatory Parts",
|
||||
text: "Le seguenti parti sono obbligatorie e devono essere inserite/The following parts are mandatory and must be included: " + missingMandatoryParts.join(", "),
|
||||
confirmButtonText: "OK"
|
||||
});
|
||||
} else if (missingParts.length > 0) {
|
||||
|
||||
@ -1,2 +1,20 @@
|
||||
<footer class="footer text-center text-sm-left">
|
||||
© 2023 CE Soft <span class="text-muted d-none d-sm-inline-block float-right">CE SOFT SRL</span>
|
||||
<footer class="footer text-center text-sm-left py-4" style="background-color: #ffffff; border-top: 1px solid #ddd; box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);">
|
||||
<div class="container">
|
||||
<div class="row align-items-center">
|
||||
<!-- Colonna sinistra -->
|
||||
<div class="col-md-6 text-md-left text-center mb-2 mb-md-0">
|
||||
<p class="mb-0">
|
||||
© 2023 <strong>CE Soft</strong>
|
||||
<span class="text-muted">- Innovazione e Tecnologia</span>
|
||||
</p>
|
||||
</div>
|
||||
<!-- Colonna destra -->
|
||||
<div class="col-md-6 text-md-right text-center">
|
||||
<a href="#" class="text-muted mx-2"><i class="fab fa-facebook fa-lg"></i></a>
|
||||
<a href="#" class="text-muted mx-2"><i class="fab fa-twitter fa-lg"></i></a>
|
||||
<a href="#" class="text-muted mx-2"><i class="fab fa-linkedin fa-lg"></i></a>
|
||||
<a href="mailto:info@cesoft.it" class="text-muted mx-2"><i class="fas fa-envelope fa-lg"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
@ -181,4 +181,4 @@ if ($companyData["edited"] != "Y") {
|
||||
}
|
||||
|
||||
?>
|
||||
<?php $titlepage = "CESoft Technical Portal"; ?>
|
||||
<?php $titlepage = "CESoft Technical Portal"; ?>
|
||||
|
||||
@ -348,3 +348,9 @@ $uploadButtonTitle = "Upload";
|
||||
$companyLogoAltTitle = "Company Logo";
|
||||
$respsign = "Send to Sign to another colleagues of the same company";
|
||||
$adduserundersamecompany = "Add User";
|
||||
$signaturetext = '<br>
|
||||
The signature token is used to confirm the submission of the application form.<br><br>
|
||||
The token is a fixed 6-digit numeric code that will be randomly generated by our system and sent via email to your registered address.<br><br>
|
||||
The token will remain valid until you regenerate it on this page.<br><br>
|
||||
To reset the signature token <a href="tokengenerationsig.php">CLICK HERE</a>.<br><br>
|
||||
The token will be generated and sent to the email address: ' . $emailuser . '<br><br>';
|
||||
|
||||
@ -352,3 +352,11 @@ $uploadButtonTitle = "Carica";
|
||||
$companyLogoAltTitle = "Logo Aziendale";
|
||||
$respsign = "Invia a collega della stessa azienda per Firma";
|
||||
$adduserundersamecompany = "Aggiungi utente";
|
||||
$signaturetext = '<br>
|
||||
<!-- Versione Italiana -->
|
||||
Il token per la firma servirà per confermare l\'invio dell\'application form.<br><br>
|
||||
Il token è un codice numerico fisso di 6 cifre che verrà generato casualmente dai nostri sistemi e inviato via mail all\'indirizzo da te registrato.<br><br>
|
||||
Il token sarà valido finchè non sarai tu a rigenerarlo da questa pagina.<br><br>
|
||||
Per re-impostare il signature token <a href="tokengenerationsig.php">CLICCA QUI</a>.<br><br>
|
||||
Il token verrà generato e inviato via mail all\'indirizzo: ' . $emailuser . '<br><br>
|
||||
';
|
||||
|
||||
@ -32,6 +32,9 @@ if (Auth::user()->hasRole('User')) :
|
||||
$pdf->Cell(190, 6, $signedtokenpdf, 0, 0, 'C');
|
||||
$pdf->Ln();
|
||||
if ($otherclient == 'Y') {
|
||||
if ($idcertificate == 5 || $idcertificate == 6) {
|
||||
$namesurnamecertcontact = $contactsinfoData['contactname'] . ' ' . $contactsinfoData['contactsurname'];
|
||||
}
|
||||
$pdf->Ln();
|
||||
$pdf->Ln();
|
||||
$pdf->SetFont('', '', 9);
|
||||
|
||||
@ -252,8 +252,6 @@ while ($row = mysqli_fetch_assoc($result)) {
|
||||
?>
|
||||
|
||||
<?php
|
||||
// duplicate row for identificationparts
|
||||
|
||||
// Connessione al database
|
||||
$conn = mysqli_connect($servername, $username, $password, $dbname);
|
||||
|
||||
@ -264,24 +262,32 @@ $result = mysqli_query($conn, $query);
|
||||
// Ciclo attraverso i risultati e duplico le righe
|
||||
while ($row = mysqli_fetch_assoc($result)) {
|
||||
|
||||
// Imposto il valore di idtrfdetails come 250
|
||||
// Imposto il nuovo valore per idtrfdetails
|
||||
$row['idtrfdetails'] = $newidtrfnumber;
|
||||
|
||||
// Lascio identificationparts nullo
|
||||
// Rimuovo l'id originale in modo che venga assegnato un nuovo ID in inserimento
|
||||
unset($row['ididentificationparts']);
|
||||
|
||||
// Query per duplicare la riga
|
||||
// Eseguiamo l'escape per ogni valore
|
||||
foreach ($row as $key => $value) {
|
||||
$row[$key] = mysqli_real_escape_string($conn, $value);
|
||||
}
|
||||
|
||||
// Preparo la query di inserimento
|
||||
$columns = implode(", ", array_keys($row));
|
||||
$values = "'" . implode("', '", array_values($row)) . "'";
|
||||
$values = "'" . implode("', '", array_values($row)) . "'";
|
||||
$sql_insert = "INSERT INTO identificationparts ($columns) VALUES ($values)";
|
||||
|
||||
// Eseguo la query
|
||||
if ($conn->query($sql_insert) === TRUE) {
|
||||
echo "Nuova riga inserita con successo identificationparts";
|
||||
echo "Nuova riga inserita con successo in identificationparts";
|
||||
} else {
|
||||
echo "Errore nell'inserimento della nuova riga: " . $conn->error;
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
<?php
|
||||
// duplicate row for trfaddrequirements
|
||||
|
||||
|
||||
@ -345,11 +345,14 @@ if ($tokenid != $tokensignatureon) {
|
||||
$mailincharge = 'd.dondena@cimac.it';
|
||||
} elseif ($csinchargeprev == 'cboscaino') {
|
||||
$mailincharge = 'c.boscaino@cimac.it';
|
||||
} elseif ($csinchargeprev == 'aboscaino') {
|
||||
$mailincharge = 'a.boscaino@cimac.it';
|
||||
} elseif ($csinchargeprev == 'solocla') {
|
||||
$mailincharge = 'info@acscreativesolutions.com';
|
||||
} else {
|
||||
$mailincharge = 'd.dondena@cimac.it';
|
||||
}
|
||||
|
||||
// Define array with all CS mails
|
||||
$csmailall = array($csmail, $csmail3);
|
||||
// Extract the recipient that matches $mailincharge
|
||||
|
||||
@ -1,39 +1,39 @@
|
||||
|
||||
|
||||
<?php
|
||||
include('include/headscript.php'); ?>
|
||||
include('include/headscript.php'); ?>
|
||||
|
||||
<?php
|
||||
if (isset($_POST["formname"])) {
|
||||
$formname=$_POST["formname"]; }
|
||||
else {
|
||||
$formname="N"; }
|
||||
$formname = $_POST["formname"];
|
||||
} else {
|
||||
$formname = "N";
|
||||
}
|
||||
if (isset($_GET["tokenupdate"])) {
|
||||
$tokenupdate=$_GET["tokenupdate"]; }
|
||||
$tokenupdate = $_GET["tokenupdate"];
|
||||
}
|
||||
|
||||
?>
|
||||
<?php
|
||||
if ($formname=="Y") {
|
||||
$UpdateQuery = new WA_MySQLi_Query($cmctrfdb);
|
||||
$UpdateQuery->Action = "update";
|
||||
$UpdateQuery->Table = "company";
|
||||
$UpdateQuery->bindColumn("companyname_company", "s", "".((isset($_POST["companyname_company"]))?$_POST["companyname_company"]:"") ."", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("address_company", "s", "".((isset($_POST["companyaddress"]))?$_POST["companyaddress"]:"") ."", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("city_company", "s", "".((isset($_POST["city"]))?$_POST["city"]:"") ."", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("zip_company", "s", "".((isset($_POST["cap"]))?$_POST["cap"]:"") ."", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("country_company", "s", "".((isset($_POST["country"]))?$_POST["country"]:"") ."", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("piva_company", "s", "".((isset($_POST["piva"]))?$_POST["piva"]:"") ."", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("telephone_company", "s", "".((isset($_POST["telephone"]))?$_POST["telephone"]:"") ."", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("email_company", "s", "".((isset($_POST["email"]))?$_POST["email"]:"") ."", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("maincontactname_company", "s", "".((isset($_POST["contactname"]))?$_POST["contactname"]:"") ."", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("maincontactsurname_company", "s", "".((isset($_POST["contactsurname"]))?$_POST["contactsurname"]:"") ."", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("maincontactmail_company", "s", "".((isset($_POST["emailmain"]))?$_POST["emailmain"]:"") ."", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("maincontactphone_company", "s", "".((isset($_POST["telephonemain"]))?$_POST["telephonemain"]:"") ."", "WA_DEFAULT");
|
||||
$UpdateQuery->addFilter("idcompany", "=", "i", "".($idcompany) ."");
|
||||
$UpdateQuery->execute();
|
||||
$UpdateGoTo = "";
|
||||
if (function_exists("rel2abs")) $UpdateGoTo = $UpdateGoTo?rel2abs($UpdateGoTo,dirname(__FILE__)):"";
|
||||
$UpdateQuery->redirect($UpdateGoTo);
|
||||
if ($formname == "Y") {
|
||||
$UpdateQuery = new WA_MySQLi_Query($cmctrfdb);
|
||||
$UpdateQuery->Action = "update";
|
||||
$UpdateQuery->Table = "company";
|
||||
$UpdateQuery->bindColumn("companyname_company", "s", "" . ((isset($_POST["companyname_company"])) ? $_POST["companyname_company"] : "") . "", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("address_company", "s", "" . ((isset($_POST["companyaddress"])) ? $_POST["companyaddress"] : "") . "", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("city_company", "s", "" . ((isset($_POST["city"])) ? $_POST["city"] : "") . "", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("zip_company", "s", "" . ((isset($_POST["cap"])) ? $_POST["cap"] : "") . "", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("country_company", "s", "" . ((isset($_POST["country"])) ? $_POST["country"] : "") . "", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("piva_company", "s", "" . ((isset($_POST["piva"])) ? $_POST["piva"] : "") . "", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("telephone_company", "s", "" . ((isset($_POST["telephone"])) ? $_POST["telephone"] : "") . "", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("email_company", "s", "" . ((isset($_POST["email"])) ? $_POST["email"] : "") . "", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("maincontactname_company", "s", "" . ((isset($_POST["contactname"])) ? $_POST["contactname"] : "") . "", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("maincontactsurname_company", "s", "" . ((isset($_POST["contactsurname"])) ? $_POST["contactsurname"] : "") . "", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("maincontactmail_company", "s", "" . ((isset($_POST["emailmain"])) ? $_POST["emailmain"] : "") . "", "WA_DEFAULT");
|
||||
$UpdateQuery->bindColumn("maincontactphone_company", "s", "" . ((isset($_POST["telephonemain"])) ? $_POST["telephonemain"] : "") . "", "WA_DEFAULT");
|
||||
$UpdateQuery->addFilter("idcompany", "=", "i", "" . ($idcompany) . "");
|
||||
$UpdateQuery->execute();
|
||||
$UpdateGoTo = "";
|
||||
if (function_exists("rel2abs")) $UpdateGoTo = $UpdateGoTo ? rel2abs($UpdateGoTo, dirname(__FILE__)) : "";
|
||||
$UpdateQuery->redirect($UpdateGoTo);
|
||||
}
|
||||
$companydetails = mysqli_query($cmctrfdb, "SELECT * FROM company WHERE company.idcompany='$idcompany'");
|
||||
$companyData = mysqli_fetch_assoc($companydetails);
|
||||
@ -41,145 +41,135 @@ $companyData = mysqli_fetch_assoc($companydetails);
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>TRF CIMAC </title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta content="CIMAC TRF Portal" name="description" />
|
||||
<meta content="" name="author" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta charset="utf-8" />
|
||||
<title>TRF CIMAC </title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta content="CIMAC TRF Portal" name="description" />
|
||||
<meta content="" name="author" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
|
||||
<!-- App favicon -->
|
||||
<link rel="shortcut icon" href="../images/favicon.ico">
|
||||
|
||||
<!--Form Wizard-->
|
||||
<link href="../plugins/jquery-steps/jquery.steps.css" rel="stylesheet" type="text/css">
|
||||
<!-- App favicon -->
|
||||
<link rel="shortcut icon" href="../images/favicon.ico">
|
||||
|
||||
<!-- App css -->
|
||||
<link href="assets/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
|
||||
<link href="assets/css/jquery-ui.min.css" rel="stylesheet">
|
||||
<link href="assets/css/icons.min.css" rel="stylesheet" type="text/css" />
|
||||
<link href="assets/css/metisMenu.min.css" rel="stylesheet" type="text/css" />
|
||||
<link href="assets/css/app.min.css" rel="stylesheet" type="text/css" />
|
||||
<!--Form Wizard-->
|
||||
<link href="../plugins/jquery-steps/jquery.steps.css" rel="stylesheet" type="text/css">
|
||||
|
||||
|
||||
<!-- submit form with button -->
|
||||
<script>
|
||||
function formSubmit() {
|
||||
document.forms["myForm"].submit();
|
||||
}
|
||||
</script>
|
||||
<!-- App css -->
|
||||
<link href="assets/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
|
||||
<link href="assets/css/jquery-ui.min.css" rel="stylesheet">
|
||||
<link href="assets/css/icons.min.css" rel="stylesheet" type="text/css" />
|
||||
<link href="assets/css/metisMenu.min.css" rel="stylesheet" type="text/css" />
|
||||
<link href="assets/css/app.min.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
|
||||
<!-- submit form with button -->
|
||||
<script>
|
||||
function formSubmit() {
|
||||
document.forms["myForm"].submit();
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<!-- Top Bar Start -->
|
||||
|
||||
|
||||
|
||||
<!-- Top Bar Start -->
|
||||
<?php include('include/topbar.php'); ?>
|
||||
<!-- Top Bar End -->
|
||||
<body>
|
||||
|
||||
|
||||
<!-- Left Sidenav -->
|
||||
<?php include('include/leftsidenav.php'); ?>
|
||||
<!-- Top Bar Start -->
|
||||
|
||||
|
||||
|
||||
<!-- Top Bar Start -->
|
||||
<?php include('include/topbar.php'); ?>
|
||||
<!-- Top Bar End -->
|
||||
|
||||
|
||||
<!-- Left Sidenav -->
|
||||
<?php include('include/leftsidenav.php'); ?>
|
||||
<!-- end left-sidenav-->
|
||||
|
||||
<div class="page-wrapper">
|
||||
<!-- Page Content-->
|
||||
<div class="page-content">
|
||||
<div class="page-wrapper">
|
||||
<!-- Page Content-->
|
||||
<div class="page-content">
|
||||
|
||||
<div class="container-fluid">
|
||||
<!-- Page-Title -->
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<div class="page-title-box">
|
||||
<div class="float-right">
|
||||
<ol class="breadcrumb">
|
||||
<li class="breadcrumb-item"><a href="javascript:void(0);">TRF</a></li>
|
||||
<li class="breadcrumb-item active">Starter</li>
|
||||
</ol>
|
||||
</div>
|
||||
<h4 class="page-title"><?php echo $titlewb; ?></h4>
|
||||
</div><!--end page-title-box-->
|
||||
</div><!--end col-->
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
|
||||
|
||||
|
||||
<!-- card for additional info gloves -->
|
||||
|
||||
<div class="card">
|
||||
|
||||
|
||||
<!-- card for show requirements -->
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<h4 class="mt-0 header-title"><?php echo $signaturetokentitle; ?></h4>
|
||||
|
||||
|
||||
<br>
|
||||
<?php if (isset($tokenupdate)) { ?>
|
||||
<div class="alert icon-custom-alert alert-outline-success alert-success-shadow" role="alert">
|
||||
<i class="mdi mdi-check-all alert-icon"></i>
|
||||
<div class="alert-text">
|
||||
<strong><?php echo $tokensuccess; ?></strong>.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
$tokennumber = $user->present()->signaturecode;
|
||||
|
||||
include('include/mailmessage.php');
|
||||
?>
|
||||
|
||||
|
||||
<?php } ?>
|
||||
<?php echo $signaturetext; ?>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div><!--end card-body-->
|
||||
|
||||
|
||||
</div><!--end card-->
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="container-fluid">
|
||||
<!-- Page-Title -->
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<div class="page-title-box">
|
||||
<div class="float-right">
|
||||
<ol class="breadcrumb">
|
||||
<li class="breadcrumb-item"><a href="javascript:void(0);">TRF</a></li>
|
||||
<li class="breadcrumb-item active">Starter</li>
|
||||
</ol>
|
||||
</div>
|
||||
<h4 class="page-title"><?php echo $titlewb; ?></h4>
|
||||
</div><!--end page-title-box-->
|
||||
</div><!--end col-->
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
|
||||
|
||||
|
||||
<!-- card for additional info gloves -->
|
||||
|
||||
<div class="card">
|
||||
|
||||
|
||||
<!-- card for show requirements -->
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<h4 class="mt-0 header-title"><?php echo $signaturetokentitle; ?></h4>
|
||||
|
||||
|
||||
<br>
|
||||
<?php if (isset($tokenupdate)) { ?>
|
||||
<div class="alert icon-custom-alert alert-outline-success alert-success-shadow" role="alert">
|
||||
<i class="mdi mdi-check-all alert-icon"></i>
|
||||
<div class="alert-text">
|
||||
<strong><?php echo $tokensuccess; ?></strong>.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
$tokennumber=$user->present()->signaturecode;
|
||||
|
||||
include('include/mailmessage.php');
|
||||
?>
|
||||
|
||||
|
||||
<?php } ?>
|
||||
<br
|
||||
|
||||
Il token per la firma servirà per confermare l'invio dell'application form.<br><br>
|
||||
|
||||
Il token è un codice numerico fisso di 6 cifre che verrà generato casualmente dai nostri sistemi e inviato via mail all'indirizzo da te registrato.<br><br>
|
||||
|
||||
Il token sarà valido finchè non sarai tu a rigenerarlo da questa pagina.<br><br>
|
||||
|
||||
Per re-impostare il signature token <a href="tokengenerationsig.php">CLICCA QUI</a>.<br><br>
|
||||
|
||||
Il token verrà generato e inviato via mail all' indirizzo: <?php echo $emailuser; ?><br><br>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div><!--end card-body-->
|
||||
|
||||
|
||||
</div><!--end card-->
|
||||
|
||||
|
||||
|
||||
|
||||
</div><!--end col-->
|
||||
</div>
|
||||
<!-- end page title end breadcrumb -->
|
||||
|
||||
|
||||
</div><!-- container -->
|
||||
<!-- footer start -->
|
||||
<?php include('include/footer.php'); ?>
|
||||
|
||||
</div><!-- container -->
|
||||
<!-- footer start -->
|
||||
<?php include('include/footer.php'); ?>
|
||||
</footer><!--end footer-->
|
||||
</div>
|
||||
</div>
|
||||
<!-- end page content -->
|
||||
</div>
|
||||
<!-- end page-wrapper -->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- jQuery -->
|
||||
@ -190,13 +180,13 @@ Il token verrà generato e inviato via mail all' indirizzo: <?php echo $emailuse
|
||||
<script src="assets/js/feather.min.js"></script>
|
||||
<script src="assets/js/jquery.slimscroll.min.js"></script>
|
||||
<script src="assets/js/jquery-ui.min.js"></script>
|
||||
|
||||
<script src="../plugins/jquery-steps/jquery.steps.min.js"></script>
|
||||
|
||||
<script src="../plugins/jquery-steps/jquery.steps.min.js"></script>
|
||||
<script src="assets/pages/jquery.form-wizard.init.js"></script>
|
||||
|
||||
<!-- App js -->
|
||||
<script src="assets/js/app.js"></script>
|
||||
|
||||
</body>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@ -315,7 +315,7 @@ include('include/trfqueryscript.php'); ?>
|
||||
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
||||
|
||||
<?php include('back.php'); ?>
|
||||
<style>
|
||||
/* select2 css */
|
||||
.select2-container {
|
||||
@ -436,7 +436,7 @@ include('include/trfqueryscript.php'); ?>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<div class="card">
|
||||
<div class="card" style="background-color: rgba(247, 223, 197, 0.5);">
|
||||
<div class="card-body">
|
||||
<div class="media">
|
||||
|
||||
@ -496,7 +496,7 @@ include('include/trfqueryscript.php'); ?>
|
||||
|
||||
<?php } ?>
|
||||
|
||||
<div class="card">
|
||||
<div class="card" style="background-color: rgba(247, 223, 197, 0.4);">
|
||||
<div class="card-body">
|
||||
<h4 class="mt-0 header-title"><?php echo $samplecheck; ?></h4>
|
||||
<p class="text-muted mb-3"><?php echo $samplecheck_help; ?></p>
|
||||
|
||||
BIN
public/uploadimages/3310-1736773365PVCnew.jpg
Normal file
BIN
public/uploadimages/3310-1736773365PVCnew.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 125 KiB |
Loading…
x
Reference in New Issue
Block a user