welfare.pluxee.it Open in urlscan Pro
34.251.201.91  Public Scan

Submitted URL: https://welfare.mycardsodexo.it/
Effective URL: https://welfare.pluxee.it/ords/f?p=102:LOGIN::::::
Submission: On May 16 via api from US — Scanned from IT

Form analysis 1 forms found in the DOM

Name: wwv_flowPOST wwv_flow.accept

<form action="wwv_flow.accept" method="post" name="wwv_flow" id="wwvFlowForm" novalidate="" autocomplete="off">
  <input type="hidden" name="p_flow_id" value="102" id="pFlowId"><input type="hidden" name="p_flow_step_id" value="101" id="pFlowStepId"><input type="hidden" name="p_instance" value="5443872976914" id="pInstance"><input type="hidden"
    name="p_page_submission_id" value="4859530004939022335865543870144663906" id="pPageSubmissionId"><input type="hidden" name="p_request" value="" id="pRequest"><input type="hidden" name="p_reload_on_submit" value="A" id="pReloadOnSubmit"><input
    type="hidden" value="4859530004939022335865543870144663906" id="pSalt">
  <!--[if lte IE 6]>
            <div id="outdated-browser">You are using an outdated web browser. For a list of supported browsers, please reference the Oracle Application Express Installation Guide.</div>
            <![endif]-->
  <!--  
              <div id="uBodyContainer"> -->
  <div id="boxJavascriptContainer" class="">
    <div id="R1439257233853424029" class="">
      <script>
        function setSessionState(anAppItemName, aValue) { //per usarlo: setSessionState('P122_MY_ITEM_ID',$v('P362_MyDomElementId'))
          var get = new htmldb_Get();
          get.add(anAppItemName, aValue);
          get.get();
          get = null;
          $('#AJAX_REFRESH').trigger('apexrefresh');
        }

        function autocase(text) {
          return text.replace(/(&)?([a-z])([a-z]{2,})(;)?/ig, function(all, prefix, letter, word, suffix) {
            if (prefix && suffix) {
              return all;
            }
            return letter.toUpperCase() + word.toLowerCase();
          });
        }
        var NO_CASE = 0;
        var UPPER_CASE = 1;
        var LOWER_CASE = 2;
        var INIT_CAP = 3;

        function beautifyString(aString, aTrim, aRemoveMultipleSpaces, aCase) {
          var vString = aString;
          if (aRemoveMultipleSpaces == 1) {
            vString = '' + vString.replace(/ +(?= )/g, '');
          }
          if (aTrim == 1) {
            vString = $.trim(vString);
          }
          if (aCase == UPPER_CASE) {
            vString = vString.toUpperCase();
          }
          if (aCase == LOWER_CASE) {
            vString = vString.toLowerCase();
          }
          if (aCase == INIT_CAP) {
            var vArray = vString.split(" ");
            for (var i = 0; i < vArray.length; i++) {
              var aux = vArray[i];
              aux = aux.substr(0, 1).toUpperCase() + aux.substr(1, aux.lenght).toLowerCase()
              vArray[i] = aux;
            }
            vString = vArray.join(" ");
          }
          return vString;
        }

        function arrotondaImporto(anImporto) {
          var vImporto = '' + anImporto.replace(/ +(?= )/g, '');
          if (isNaN(vImporto)) {
            vImporto = vImporto.replace('.', '§').replace(',', '.').replace('§', '.');
          }
          if (isNaN(vImporto)) {
            return vImporto;
          }
          var vImporto2 = (Math.round(vImporto * 100) / 100).toFixed(2);
          return vImporto2.replace('.', '§').replace(',', '.').replace('§', ',');
        } // fine arrotondaImporto
        function checkPartitaIVA(aPartitaIVA) {
          var aux = getErrMsgPartitaIVA(aPartitaIVA);
          if (aux == '' || aux == undefined) return;
          aux = aux.split("|").join("\n");
          alert(aux);
        }

        function getErrMsgPartitaIVA(aPartitaIVA) {
          var vPiva = aPartitaIVA;
          var vErrMsg = '';
          var vCaratteriOK = "0123456789";
          var vCaratteriKO = '';
          var vError = 0;
          if (vPiva == '') return '';
          if (vPiva.length != 11) vErrMsg += '|' + "La partita IVA deve essere di 11 caratteri.";
          vError = 0;
          for (i = 0; i < 11; i++) {
            if (vCaratteriOK.indexOf(vPiva.charAt(i)) == -1) {
              vError = 1;
              vCaratteriKO += vPiva.charAt(i);
            }
          }
          if (vError > 0) {
            vErrMsg += '|' + "La partita IVA contiene uno o più caratteri non validi [" + vCaratteriKO + "]. Sono ammesse solo cifre.";
          }
          if (vErrMsg.length > 0) return vErrMsg.substr(1, 1000);
          s = 0;
          for (i = 0; i <= 9; i += 2) s += vPiva.charCodeAt(i) - '0'.charCodeAt(0);
          for (i = 1; i <= 9; i += 2) {
            c = 2 * (vPiva.charCodeAt(i) - '0'.charCodeAt(0));
            if (c > 9) c = c - 9;
            s += c;
          }
          if ((10 - s % 10) % 10 != vPiva.charCodeAt(10) - '0'.charCodeAt(0)) return "La partita IVA non ha il corretto codice di controllo.";
          return '';
        }

        function checkCodiceFiscale(aCodiceFiscale) {
          var aux = getErrMsgCodiceFiscale(aCodiceFiscale);
          if (aux == '' || aux == undefined) return;
          aux = aux.split("|").join("\n");
          alert(aux);
        }

        function getErrMsgCodiceFiscale(aCodiceFiscale) {
          // controllo unicamente la Validità formale, ovvero 
          // lunghezza, caratteri alfanumerici e codice di controllo.
          var vCodiceFiscale = aCodiceFiscale.toUpperCase();
          if (vCodiceFiscale == '') return '';
          var cValidi = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
          var cSet_01 = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
          var cSet_02 = "ABCDEFGHIJABCDEFGHIJKLMNOPQRSTUVWXYZ";
          var cSetPari = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
          var cSetDispari = "BAKPLCQDREVOSFTGUHMINJWZYX";
          var vErrMsg = '';
          var i, s;
          var vCaratteriKO = '';
          var vError = 0;
          if (vCodiceFiscale.length != 16) vErrMsg += '|' + 'Il Codice Fiscale deve essere di 16 caratteri.';
          for (i = 0; i < 16; i++) {
            if (cValidi.indexOf(vCodiceFiscale.charAt(i)) == -1) {
              vError = 1;
              vCaratteriKO += vCodiceFiscale.charAt(i);
            }
          }
          if (vError > 0) {
            vErrMsg += '|' + 'Il Codice Fiscale contiene uno o più caratteri non validi [' + vCaratteriKO + ']. Sono ammessi solo caratteri alfabetici e cifre decimali.';
          }
          if (vErrMsg.length > 0) return vErrMsg.substr(1, 1000);
          s = 0;
          for (i = 1; i <= 13; i += 2) s += cSetPari.indexOf(cSet_02.charAt(cSet_01.indexOf(vCodiceFiscale.charAt(i))));
          for (i = 0; i <= 14; i += 2) s += cSetDispari.indexOf(cSet_02.charAt(cSet_01.indexOf(vCodiceFiscale.charAt(i))));
          if (s % 26 != vCodiceFiscale.charCodeAt(15) - 'A'.charCodeAt(0)) return 'Il Codice Fiscale non ha il corretto codice di controllo.';
          return '';
        }

        function getIntegerFromNumber(aNumber) {
          if (aNumber == 'undefined') return '';
          var res = aNumber.split(' ').join(''); //alert(res);
          res = res.split('.')[0].split(',')[0];
          return res;
        }

        function getNumeroSottoservizi(aServizio) {
          var vAjaxRequest = new htmldb_Get(null, 102, 'APPLICATION_PROCESS=getNumeroSottoServiziAssociato', 0);
          vAjaxRequest.addParam('x01', aServizio)
          vAjaxResult = vAjaxRequest.get();
          return vAjaxResult;
        }

        function checkIBAN(anIban) {
          var aux = getErrMsgIBAN(anIban);
          if (aux == '' || aux == undefined) return;
          aux = aux.split("|").join("\n");
          alert(aux);
        }

        function getErrMsgIBAN(anInput) {
          var vErrMsg = '';
          if (anInput == '' || anInput == undefined) {
            return ''
          };
          var CODE_LENGTHS = {
            AD: 24,
            AE: 23,
            AT: 20,
            AZ: 28,
            BA: 20,
            BE: 16,
            BG: 22,
            BH: 22,
            BR: 29,
            CH: 21,
            CR: 21,
            CY: 28,
            CZ: 24,
            DE: 22,
            DK: 18,
            DO: 28,
            EE: 20,
            ES: 24,
            FI: 18,
            FO: 18,
            FR: 27,
            GB: 22,
            GI: 23,
            GL: 18,
            GR: 27,
            GT: 28,
            HR: 21,
            HU: 28,
            IE: 22,
            IL: 23,
            IS: 26,
            IT: 27,
            JO: 30,
            KW: 30,
            KZ: 20,
            LB: 28,
            LI: 21,
            LT: 20,
            LU: 20,
            LV: 21,
            MC: 27,
            MD: 24,
            ME: 22,
            MK: 19,
            MR: 27,
            MT: 31,
            MU: 30,
            NL: 18,
            NO: 15,
            PK: 24,
            PL: 28,
            PS: 29,
            PT: 25,
            QA: 29,
            RO: 24,
            RS: 22,
            SA: 24,
            SE: 24,
            SI: 19,
            SK: 24,
            SM: 27,
            TN: 24,
            TR: 26
          };
          var iban = String(anInput).toUpperCase().replace(/[^A-Z0-9]/g, ''),
            code = iban.match(/^([A-Z]{2})(\d{2})([A-Z\d]+)$/),
            digits;
          if (!code) {
            vErrMsg += '|' + 'Il formato non è corretto.';
          }
          if (iban.length !== CODE_LENGTHS[code[1]]) {
            vErrMsg += '|' + 'Le prime due cifre devono corrispondere ad un codice Paese valido.';
          }
          if (vErrMsg.length > 0) return vErrMsg;
          digits = (code[3] + code[1] + code[2]).replace(/[A-Z]/g, function(letter) {
            return letter.charCodeAt(0) - 55;
          });
          if (mod97(digits) !== 1) {
            vErrMsg += '|' + 'Controllo checksum da esito negativo.';
          }
          return vErrMsg;
        }

        function mod97(string) {
          var checksum = string.slice(0, 2),
            fragment;
          for (var offset = 2; offset < string.length; offset += 7) {
            fragment = String(checksum) + string.substring(offset, offset + 7);
            checksum = parseInt(fragment, 10) % 97;
          }
          return checksum;
        }
      </script>
    </div>
  </div>
  <div id="R1425042948154798177" class="">
    <div id="boxApplicationData" style="display:none;" class="">
    </div>
    <div id="boxUserData" style="display:none;" class="">
      <table id="apex_layout_1439296534865077927" border="0" class="formlayout" role="presentation">
        <tbody>
          <tr>
            <td align="right"><label for="P0_USR_LOGIN_EMAIL" id="P0_USR_LOGIN_EMAIL_LABEL" class="uOptional">USR_LOGIN_EMAIL</label></td>
            <td align="left"><input type="text" id="P0_USR_LOGIN_EMAIL" name="P0_USR_LOGIN_EMAIL" class="text_field apex-item-text" value="" size="32" maxlength="255"></td>
          </tr>
          <tr>
            <td align="right"><label for="P0_USR_NOME" id="P0_USR_NOME_LABEL" class="uOptional">USD_NOME</label></td>
            <td align="left"><input type="text" id="P0_USR_NOME" name="P0_USR_NOME" class="text_field apex-item-text" value="" size="32" maxlength="60"></td>
          </tr>
          <tr>
            <td align="right"><label for="P0_USR_COGNOME" id="P0_USR_COGNOME_LABEL" class="uOptional">USD_COGNOME</label></td>
            <td align="left"><input type="text" id="P0_USR_COGNOME" name="P0_USR_COGNOME" class="text_field apex-item-text" value="" size="32" maxlength="60"></td>
          </tr>
          <tr>
            <td align="right"><label for="P0_USR_USER_SESSO" id="P0_USR_USER_SESSO_LABEL" class="uOptional">USD_USER_SESSO</label></td>
            <td align="left"><input type="text" id="P0_USR_USER_SESSO" name="P0_USR_USER_SESSO" class="text_field apex-item-text" value="" size="32" maxlength="1"></td>
          </tr>
          <tr>
            <td nowrap="nowrap" align="right"><label for="P0_USER_DATA_LIST" id="P0_USER_DATA_LIST_LABEL" class="uOptional">User Data List</label></td>
            <td align="left" valign="middle">
              <fieldset id="P0_USER_DATA_LIST_fieldset" class="textarea apex-item-textarea" tabindex="-1"><textarea name="P0_USER_DATA_LIST" rows="5" cols="80" wrap="virtual" id="P0_USER_DATA_LIST"
                  class="textarea apex-item-textarea">nobody#####N##1#1#######N####</textarea></fieldset>
            </td>
          </tr>
          <tr>
            <td align="right"><label for="P0_INDIRIZZO_COMPLETE" id="P0_INDIRIZZO_COMPLETE_LABEL" class="uOptional">INDIRIZZO COMPLETO</label></td>
            <td align="left"><input type="text" id="P0_INDIRIZZO_COMPLETE" name="P0_INDIRIZZO_COMPLETE" class="text_field apex-item-text" value="'N'" size="32" maxlength="1"></td>
          </tr>
          <tr>
            <td align="right"><label for="P0_USR_RAG_SOC" id="P0_USR_RAG_SOC_LABEL" class="uOptional">USR_RAG_SOC</label></td>
            <td align="left"><input type="text" id="P0_USR_RAG_SOC" name="P0_USR_RAG_SOC" class="text_field apex-item-text" value="" size="32" maxlength="60"></td>
          </tr>
          <tr>
            <td align="right"><label for="P0_USR_GRP_ID" id="P0_USR_GRP_ID_LABEL" class="uOptional">USR_GRP_ID</label></td>
            <td align="left"><input type="text" id="P0_USR_GRP_ID" name="P0_USR_GRP_ID" class="text_field apex-item-text" value="" size="32" maxlength="60"></td>
          </tr>
          <tr>
            <td align="right"><label for="P0_STYLE_SHEET" id="P0_STYLE_SHEET_LABEL" class="uOptional">Style Sheet</label></td>
            <td align="left" valign="middle">
              <fieldset id="P0_STYLE_SHEET_fieldset" class="textarea apex-item-textarea" tabindex="-1"><textarea name="P0_STYLE_SHEET" rows="5" cols="80" wrap="virtual" id="P0_STYLE_SHEET" class="textarea apex-item-textarea"></textarea></fieldset>
            </td>
          </tr>
          <tr>
            <td align="right"><label for="P0_PSW_CHG" id="P0_PSW_CHG_LABEL" class="uOptional">Primo Accesso</label></td>
            <td align="left" valign="middle"><select id="P0_PSW_CHG" name="P0_PSW_CHG" class="selectlist apex-item-select" size="1">
                <option value="S" selected="selected">S</option>
                <option value="N">N</option>
              </select><input type="hidden" id="P0_IS_FIRST_ACCESS" name="P0_IS_FIRST_ACCESS" value="OK"><input type="hidden" data-for="P0_IS_FIRST_ACCESS"
                value="6Jo1HpFY5OvvyfCADXvPIF1xybYgVm6W-fsupgoRFRp9QN38kJcH_CJqcC2-6YAuny1D6uT-rvTnSZThqEvifw"><input type="hidden" id="P0_BASE_URL" name="P0_BASE_URL" value=""><input type="hidden" data-for="P0_BASE_URL"
                value="OyS52d1oLT8IjH_AW84d7lwUc5dn3hBRfjnoFpCtkQa9Dx1d4wlblCEZKpxoqiCs_ESu4T8wcRIKAkFv9uEKtQ"></td>
          </tr>
        </tbody>
      </table>
    </div>
    <div id="boxUserCart" style="display:none;" class="">
      <table id="apex_layout_1439936951634257443" border="0" class="formlayout" role="presentation">
        <tbody>
          <tr>
            <td nowrap="nowrap" align="right"><label for="P0_SCT_QTA_TOT" id="P0_SCT_QTA_TOT_LABEL" class="uOptional">ShoppigCart_QtaTot</label></td>
            <td align="left" valign="middle"><input type="text" id="P0_SCT_QTA_TOT" name="P0_SCT_QTA_TOT" class="number_field apex-item-text" value="0" size="30" maxlength="4000" style="text-align:right"></td>
          </tr>
          <tr>
            <td nowrap="nowrap" align="right"><label for="P0_SCT_QTA_PREMI_DISTINCT" id="P0_SCT_QTA_PREMI_DISTINCT_LABEL" class="uOptional">ShoppigCart_QtaPremiDistinct</label></td>
            <td align="left" valign="middle"><input type="text" id="P0_SCT_QTA_PREMI_DISTINCT" name="P0_SCT_QTA_PREMI_DISTINCT" class="number_field apex-item-text" value="0" size="30" maxlength="4000" style="text-align:right"></td>
          </tr>
          <tr>
            <td nowrap="nowrap" align="right"><label for="P0_SCT_PUNTI_TOT" id="P0_SCT_PUNTI_TOT_LABEL" class="uOptional">ShoppigCart_PuntiTot</label></td>
            <td align="left" valign="middle"><input type="text" id="P0_SCT_PUNTI_TOT" name="P0_SCT_PUNTI_TOT" class="number_field apex-item-text" value="0" size="30" maxlength="4000" style="text-align:right"></td>
          </tr>
          <tr>
            <td nowrap="nowrap" align="right"><label for="P0_SCT_CASH_TOT" id="P0_SCT_CASH_TOT_LABEL" class="uOptional">ShoppigCart_ValoreTot</label></td>
            <td align="left" valign="middle"><input type="text" id="P0_SCT_CASH_TOT" name="P0_SCT_CASH_TOT" class="number_field apex-item-text" value="0" size="30" maxlength="4000" style="text-align:right"></td>
          </tr>
        </tbody>
      </table>
    </div>
    <div id="boxUserDataAsBeneficiario" style="display:none;" class="">
      <table id="apex_layout_1404537526372947874" border="0" class="formlayout" role="presentation">
        <tbody>
          <tr>
            <td align="right"><label for="P0_WLF_BEN_ID" id="P0_WLF_BEN_ID_LABEL" class="uOptional">Ben Id</label></td>
            <td align="left" valign="middle"><input type="text" id="P0_WLF_BEN_ID" name="P0_WLF_BEN_ID" class="text_field apex-item-text" value="" size="30" maxlength="4000"></td>
          </tr>
        </tbody>
      </table>
    </div>
    <div id="boxUserDataAsBeneficiarioMBL" style="display:none;" class="">
      <table id="apex_layout_1406371899591069986" border="0" class="formlayout" role="presentation">
        <tbody>
          <tr>
            <td align="right"><label for="P0_MBL_BEN_ID" id="P0_MBL_BEN_ID_LABEL" class="uOptional">MBL Ben Id</label></td>
            <td align="left" valign="middle"><input type="text" id="P0_MBL_BEN_ID" name="P0_MBL_BEN_ID" class="text_field apex-item-text" value="" size="30" maxlength="4000"></td>
          </tr>
        </tbody>
      </table>
    </div>
  </div>
  <div id="R1439913727001821546" class="">
    <style>
      #schedaTecnica {
        width: 700px;
        background-color: white;
        padding: 23px !important;
        overflow-x: hidden;
        text-align: left !important;
        font-family: "TT Travels Medium", Verdana, "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, "Lucida Grande", sans-serif;
      }

      #schedaTecnica .cat {
        width: 250 px;
        background-color: rgb(174, 206, 248);
        color: white;
        padding: 5px;
        font-weight: bold;
        font-size: 20px;
      }

      #schedaTecnica .dati {
        width: 350px;
        float: left;
      }

      #schedaTecnica .dati strong {
        font-weight: bold;
      }

      #schedaTecnica .dati em {
        font-style: italic;
      }

      #schedaTecnica .dati h2 {
        font-size: 16px;
        color: rgb(174, 206, 248);
        padding-top: 20px;
        padding-bottom: 10px;
        padding-left: 5px;
      }

      #schedaTecnica .dati h3 {
        font-size: 18px;
        margin-bottom: 40px;
      }

      #schedaTecnica .immagine {
        width: 320px;
        float: left;
        text-align: center;
        height: 220px;
        alignment-baseline: baseline;
        background-color: white
          /*#eaf0f8*/
        ;
      }

      #boxSchedaDesc #tabDesc {}

      #boxSchedaDesc #tabDesc a {
        margin-bottom: 10px;
        width: 100px;
        height: 23px;
        float: left;
        margin-right: 5px;
        font-size: 18px;
        padding: 4px;
        color: hotpink;
      }

      #boxSchedaDesc #tabDesc a:hover {}

      #box_descr_breve {
        font-size: 15px;
        background-color: #eaf0f8;
        border-color: #A4C8FA;
        border-style: dashed;
        border-width: 2px;
        padding: 4px;
      }

      #box_descr {
        font-size: 15px;
        background-color: #F7F9FC;
        border-color: #539BFD;
        border-style: dashed;
        border-width: 1px;
        padding: 6px;
        font-style: italic;
      }
    </style>
  </div>
  <div id="boxGenMessages" style="display:none;" class="">
    <table id="apex_layout_1439352743462844973" border="0" class="formlayout" role="presentation">
      <tbody>
        <tr>
          <td nowrap="nowrap" align="right"><label for="P0_WELCOME_MESSAGE" id="P0_WELCOME_MESSAGE_LABEL" class="uOptional">Welcome Message</label></td>
          <td align="left" valign="middle"><input type="text" id="P0_WELCOME_MESSAGE" name="P0_WELCOME_MESSAGE" class="text_field apex-item-text" value=" <div class=&quot;row&quot;>
    <div class=&quot;col-sm-3&quot; >
        <img src=&quot;https://www.pass-shopping.it/src/assets/images/pass-shopping-logo.svg&quot; class=&quot;img-rounded img-pass-shop&quot; alt=&quot;Pass Shopping&quot; style=&quot;    max-width: 400px;&quot; > 
    </div>
   <div class=&quot;col-sm-9&quot;>
<p class=&quot;wlf-text&quot;>Da oggi la tua offerta di benefit welfare si arricchisce di un nuovo prodotto, P<strong>ass Shopping, UN UNICO BUONO</strong>, con il quale potrai scegliere tra <strong>MIGLIAIA DI OPPORTUNIT&amp;Agrave;</strong>!</p>

<p><strong>Pass Shopping</strong> ti consente di usufruire di tanti beni e servizi in totale libert&amp;agrave; direttamente nel tuo negozio preferito oppure online sui migliori siti di e-commerce.</p>

<p><strong>Fare shopping, praticare sport, viaggiare e fare il pieno di carburante in tutta Italia non &amp;egrave; mai stato cos&amp;igrave; facile.</strong></p>

<p>
<a href=&quot;f?p=102:36:#SESSION#::::P36_SERV_ID,P36_CAT_SPESA,P36_CTP_ID,P36_PUNTI_RANGE_MIN,P36_PUNTI_RANGE_MAX:101,101,,&quot;><strong><u>CLICCA E SCOPRI NEL DETTAGLIO PASS SHOPPING!</u></strong></a>
</p>
</div>
  </div>" size="30" maxlength="4000"></td>
        </tr>
        <tr>
          <td nowrap="nowrap" align="right"><label for="P0_SALDO_PUNTI_MESSAGE" id="P0_SALDO_PUNTI_MESSAGE_LABEL" class="uOptional">Saldo Punti Message</label></td>
          <td align="left" valign="middle"><input type="text" id="P0_SALDO_PUNTI_MESSAGE" name="P0_SALDO_PUNTI_MESSAGE" class="text_field apex-item-text" value="" size="30" maxlength="4000"></td>
        </tr>
      </tbody>
    </table>
  </div>
  <div id="R1393167658283928892" class="">
    <style>
      #ordiniSospesiWarning {
        margin-top: 60px;
      }

      table.formlayout td img.uPopupLOVIcon {
        /* da trasferire in style.css
     background: url(https://wlfvicenza.maxapex.net/common_files/img/search03.png) no-repeat;  */
      }

      .pop-cat-descr {
        overflow: auto;
        max-height: 250px;
      }

      .pop-cat-descr>p {
        font-size: medium;
      }

      label.uRequired img.wlf-asterisk {
        /* da trasferire in style.css uAsterisk*/
        width: 8px;
        height: 11px;
        background: url(//welfare.mysodexo.it/i/themes/theme_26/images/app_theme.png) -60px -20px no-repeat;
      }

      .overflow-box {
        margin-bottom: 60px;
        /* MARGIN-TOP: 24PX;
     */
      }

      .wlf-menu-account {
        z-index: 1000;
      }

      div.wlf-menu-account li {
        z-index: 1001;
      }

      #logo,
      #uLogo {
        z-index: 9999;
        height: 45px;
      }

      div.wlf_privacy-container {
        border-style: solid;
        border-color: #2A295C;
        border-width: thin;
        padding: 4px;
      }

      div#NoAutorizzazioneDatiWarning {
        font-family: "TT Travels Medium", Verdana, 'SansaPro';
        font-size: large;
      }

      div.privacy-testo {
        font-family: "TT Travels Medium", Verdana, 'SansaPro';
        font-size: small;
      }

      div.wlf-auth-container {
        min-HEIGHT: 520px;
        Z-INDEX: 899;
        TOP: 10px;
        POSITION: absolute;
        BACKGROUND-COLOR: WHITE;
        /* BORDER-COLOR: RED; */
        BORDER-STYLE: RIDGE;
        BORDER-WIDTH: initial;
        PADDING-left: 10PX;
        PADDING-right: 10PX;
        padding-top: 10px;
      }

      div.wlf-popup-container {
        min-HEIGHT: 30%;
        Z-INDEX: 899;
        TOP: 50%;
        WIDTH: 80%;
        max-width: 1150px;
        transform: translate(-50%, -50%);
        Left: 50%;
        POSITION: absolute;
        BACKGROUND-COLOR: WHITE;
        BORDER-STYLE: RIDGE;
        BORDER-WIDTH: initial;
        padding: 10px;
        box-shadow: 8px 11px 10px 4px #444444;
        border: solid #e53528;
        -webkit-animation: fadein 1s;
        /* Safari, Chrome and Opera > 12.1 */
        -moz-animation: fadein 1s;
        /* Firefox < 16 */
        -ms-animation: fadein 1s;
        /* Internet Explorer */
        -o-animation: fadein 1s;
        /* Opera < 12.1 */
        animation: fadein 1s;
      }

      @keyframes fadein {
        from {
          opacity: 0;
        }

        to {
          opacity: 1;
        }
      }

      /* Firefox < 16 */
      @-moz-keyframes fadein {
        from {
          opacity: 0;
        }

        to {
          opacity: 1;
        }
      }

      /* Safari, Chrome and Opera > 12.1 */
      @-webkit-keyframes fadein {
        from {
          opacity: 0;
        }

        to {
          opacity: 1;
        }
      }

      /* Internet Explorer */
      @-ms-keyframes fadein {
        from {
          opacity: 0;
        }

        to {
          opacity: 1;
        }
      }

      /* Opera < 12.1 */
      @-o-keyframes fadein {
        from {
          opacity: 0;
        }

        to {
          opacity: 1;
        }
      }

      div#rgnCookieRow {
        background-color: #ca0418;
        color: #fefefe;
        font-weight: 600;
        padding-left: 60px;
        padding-top: 10px;
        padding-bottom: 10px;
      }

      .wlf-cookie-btn {
        line-height: 30px;
        width: 100px;
        background-color: #263780;
        color: #ffffff;
        margin-top: 15px;
        font-weight: 600;
        border: none;
      }

      aside.sidebar .wlf-default-button {
        margin-top: 8px;
      }
    </style>
  </div><!--<div id="uLoginContainer"> 
  <span id="APEX_SUCCESS_MESSAGE" data-template-id="1425435043501957974_S" class="apex-page-success u-hidden"></span><span id="APEX_ERROR_MESSAGE" data-template-id="1425435043501957974_E" class="apex-page-error u-hidden"></span>
   -->
  <div id="page">
    <header class="internal">
      <div class="container">
        <div class="row border">
          <div class="col-xs-3">
            <a href="#"><img src="/i/img/logo.png" alt="Sodexo Quality Of Life Services" id="logo"></a>
          </div>
        </div>
      </div>
    </header>
    <section id="login">
      <div class="container">
        <div id="uLoginContainer">
          <span id="APEX_SUCCESS_MESSAGE" data-template-id="1425435043501957974_S" class="apex-page-success u-hidden"></span><span id="APEX_ERROR_MESSAGE" data-template-id="1425435043501957974_E" class="apex-page-error u-hidden"></span>
        </div>
        <div class="row hidden-xs spacer">
          <div class="col-md-12"></div>
        </div>
        <div class="row loginBox">
          <div class="col-md-5 col-md-offset-7 col-sm-7 col-sm-offset-5">
            <div class="col-md-11">
              <div class="login-header row">
                <p style="color:#2A295C; font-size: 150%; font-weight: bold; text-align: center;">Welfare</p>
                <div class="col-md-12" style="color: #2A295C;">Inserisci le tue credenziali </div>
              </div>
              <div class="row">
                <div class="login-form col-md-12">
                  <div id="containerLogin" class="input-group">
                    <table id="apex_layout_1428414423505490791" border="0" class="formlayout" role="presentation">
                      <tbody>
                        <tr>
                          <td align="right" valign="middle"><span class="input-group-addon" style="align:right;">
                              <img src="/common_files/img/ico_user.png">
                            </span>
                            <label for="P101_USERNAME" id="P101_USERNAME_LABEL" class="uOptional" style="display:none;"> Username</label>
                          </td>
                          <td colspan="2" align="left"><input type="text" id="P101_USERNAME" name="P101_USERNAME" placeholder="username" class="form-control"
                              style="height: 34px; padding: 6px 12px; font-size: 14px; line-height: 1.42857; color: #555555; background-color: white; background-image: none; border: 1px solid #cccccc; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;"
                              value="" size="40" maxlength="100"></td>
                        </tr>
                        <tr>
                          <td align="right" valign="middle"><span class="input-group-addon" style="align:right;">
                              <img src="/common_files/img/ico_pwd.png">
                            </span>
                            <label for="P101_PASSWORD" id="P101_PASSWORD_LABEL" class="uOptional" style="display:none;"> Password</label>
                          </td>
                          <td align="left"><input type="password" name="P101_PASSWORD" size="40" maxlength="100" value="" id="P101_PASSWORD" placeholder="password" class="form-control"
                              style="height: 34px; padding: 6px 12px; font-size: 14px; line-height: 1.42857; color: #555555; background-color: white; background-image: none; border: 1px solid #cccccc; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;"
                              onkeypress="return apex.submit({request:'P101_PASSWORD',submitIfEnter:event})"></td>
                        </tr>
                        <tr>
                          <td colspan="2" align="center" valign="middle"><a href="javascript:apex.submit(%7Brequest:'LOGIN'%7D);" class="default-button wlf-default-button wlf-default-button" id="P101_LOGIN" role="button"><span>ACCEDI</span></a>
                          </td>
                        </tr>
                      </tbody>
                    </table>
                  </div>
                  <div id="R1395191167067738152" style="display:none;" class="">
                  </div>
                </div>
              </div>
              <div class="login-footer row">
                <div class="col-md-7 col-sm-7 col-xs-6">
                  <div id="passwordLost" class="">
                    <table summary="" cellspacing="0" cellpadding="0" border="0" width="100%">
                      <tbody>
                        <tr>
                          <td align="left">
                            <a href="javascript:apex.submit(%7Brequest:'RESET_PSWD'%7D);" id="B1410180025799183961" role="button"><img src="/i/img/ico_key.png" alt="Hai Perso la Password?" border="0"><span>&nbsp;&nbsp;Hai Perso la Password?</span></a>
                            <p class="wlf-text"><br> <br></p>
                          </td>
                        </tr>
                      </tbody>
                    </table>
                    <table id="apex_layout_1410179744930170596" border="0" class="formlayout" role="presentation">
                      <tbody>
                        <tr>
                          <td align="right"></td>
                          <td align="left" valign="middle"><input type="text" id="P101_GOTO_RESET_PSWD_URL" name="P101_GOTO_RESET_PSWD_URL" class="text_field apex-item-text" style="display:none;"
                              value="https://welfare.pluxee.it/ords/f?p=105:LOGIN::::::" size="30" maxlength="4000"></td>
                        </tr>
                      </tbody>
                    </table>
                  </div>
                </div>
                <div class="col-md-5 col-sm-5 col-xs-6 powered"> Powered by:Pluxee </div>
              </div>
            </div>
          </div>
        </div>
        <!-- ######### LW - 22092023: MODIFICA PLUXEE INIZIO 
<a href="#" class="ot-sdk-show-settings">Cookie Settings</a>
<a href="https://www.sodexo.it/informative-legali/" class="#"> - Informative legali e policy</a>
     ######### LW - 22092023: MODIFICA PLUXEE FINE -->
        <!-- <a href="https://www.sodexo.it/cookie-policy/" class="#"> - Cookie Policy</a> -->
        <div class="row hidden-xs spacer">
          <div class="col-md-12"></div>
        </div>
      </div>
    </section>
    <footer>
      <div class="container">
        <div class="row">
          <div class="col-sm-2 col-xs-12">
            <a href="#">
                   <!-- 
  LW - 13092023: MODIFICA PLUXEE
<img src="/i//logo-footer.png" alt="Sodexo Quality Of Life Services" id="logo-footer">
-->
                </a>
          </div>
          <div class="col-sm-10 col-xs-12">
            <p style="color:white" class="copyright">
              <!-- ######### LW - 22092023: MODIFICA PLUXEE INIZIO --> © Copyright Pluxee 2023 | <a href="#" class="ot-sdk-show-settings">Impostazioni cookie</a>
              <a href="https://www.sodexo.it/informative-legali/" class="#"> | Informative legali e policy</a>
              <!-- ######### LW - 22092023: MODIFICA PLUXEE FINE -->
              <!-- <span>NOTA LEGALE</span> -->
            </p>
          </div>
        </div>
      </div>
    </footer>
    <input type="hidden" id="pPageItemsRowVersion" value=""><input type="hidden" id="pPageItemsProtected" value="u9OMN3mkMLtgTVuPSL7h-XJQOrBH7Pb4I-D7yqHtoyc">
  </div>
</form>

Text Content

USR_LOGIN_EMAILUSD_NOMEUSD_COGNOMEUSD_USER_SESSOUser Data
Listnobody#####N##1#1#######N####INDIRIZZO COMPLETOUSR_RAG_SOCUSR_GRP_IDStyle
SheetPrimo AccessoS N

ShoppigCart_QtaTotShoppigCart_QtaPremiDistinctShoppigCart_PuntiTotShoppigCart_ValoreTot

Ben Id

MBL Ben Id



Welcome MessageSaldo Punti Message



Welfare

Inserisci le tue credenziali

Username PasswordACCEDI



  Hai Perso la Password?







Powered by:Pluxee


© Copyright Pluxee 2023 | Impostazioni cookie | Informative legali e policy

Cliccando su "Accetta tutti i cookie", acconsenti all'installazione di cookie
sul nostro sito e di terze parti sul tuo dispositivo al fine di migliorare le
prestazioni del nostro sito, per migliorare la tua esperienza e anche per
offrirti informazioni personalizzate sui nostri servizi. Per saperne di più su
come utilizziamo i cookie e cosa puoi fare, puoi consultare laCookie policy
Accetta tutti i cookie
Impostazioni cookie




CENTRO PREFERENZE SULLA PRIVACY

Quando si visita qualsiasi sito Web, questo può memorizzare o recuperare
informazioni sul tuo browser, in gran parte sotto forma di cookie. Queste
informazioni potrebbero essere su di te, le tue preferenze o il tuo dispositivo
e sono utilizzate in gran parte per far funzionare il sito secondo le tue
aspettative. Le informazioni di solito non ti identificano direttamente, ma
possono fornire un'esperienza Web più personalizzata. Poiché rispettiamo il tuo
diritto alla privacy, è possibile scegliere di non consentire alcuni tipi di
cookie. Clicca sulle intestazioni delle diverse categorie per saperne di più e
modificare le impostazioni predefinite. Tuttavia, il bloccaggio di alcuni tipi
di cookie può avere impatto sulla tua esperienza del sito e dei servizi che
siamo in grado di offrire.
Ulteriori informazioni
Consenti tutti


GESTISCI PREFERENZE CONSENSO

COOKIE DI PRESTAZIONE

Cookie di prestazione

Questi cookie ci permettono di contare le visite e fonti di traffico in modo da
poter misurare e migliorare le prestazioni del nostro sito. Ci aiutano a sapere
quali sono le pagine più e meno popolari e vedere come i visitatori si muovono
intorno al sito. Tutte le informazioni raccolte dai cookie sono aggregate e
quindi anonime. Se non consenti questi cookie, non sapremo quando hai visitato
il nostro sito.

Dettagli dei cookie‎
Back Button


ELENCO DEI COOKIE



Search Icon
Filter Icon

Clear
checkbox label label
Apply Cancel
Consent Leg.Interest
checkbox label label
checkbox label label
checkbox label label

Conferma le mie scelte