gestion.distrivert01.fr Open in urlscan Pro
141.95.216.250  Public Scan

URL: https://gestion.distrivert01.fr/
Submission: On May 17 via api from US — Scanned from FR

Form analysis 1 forms found in the DOM

Name: loginPOST /index.php?mainmenu=home

<form id="login" name="login" method="post" action="/index.php?mainmenu=home">
  <input type="hidden" name="token" value="439c1fb11ee110e307998e99a9dc305b">
  <input type="hidden" name="actionlogin" value="login">
  <input type="hidden" name="loginfunction" value="loginfunction">
  <input type="hidden" name="backtopage" value="">
  <!-- Add fields to store and send local user information. This fields are filled by the core/js/dst.js -->
  <input type="hidden" name="tz" id="tz" value="1">
  <input type="hidden" name="tz_string" id="tz_string" value="Europe/Paris">
  <input type="hidden" name="dst_observed" id="dst_observed" value="1">
  <input type="hidden" name="dst_first" id="dst_first" value="2024-03-31T01:59:00Z">
  <input type="hidden" name="dst_second" id="dst_second" value="2024-10-27T02:59:00Z">
  <input type="hidden" name="screenwidth" id="screenwidth" value="1600">
  <input type="hidden" name="screenheight" id="screenheight" value="1200">
  <input type="hidden" name="dol_hide_topmenu" id="dol_hide_topmenu" value="">
  <input type="hidden" name="dol_hide_leftmenu" id="dol_hide_leftmenu" value="">
  <input type="hidden" name="dol_optimize_smallscreen" id="dol_optimize_smallscreen" value="">
  <input type="hidden" name="dol_no_mouse_hover" id="dol_no_mouse_hover" value="">
  <input type="hidden" name="dol_use_jmobile" id="dol_use_jmobile" value="">
  <!-- Title with version -->
  <div class="login_table_title center" title="Dolibarr 19.0.2">
    <a class="login_table_title" href="https://www.dolibarr.org" target="_blank" rel="noopener noreferrer external">Dolibarr 19.0.2</a>
  </div>
  <div class="login_table">
    <div id="login_line1">
      <div id="login_left">
        <img alt="" src="/theme/dolibarr_logo.svg" id="img_logo">
      </div>
      <br>
      <div id="login_right">
        <div class="tagtable left centpercent" title="Saisir les informations de connexion">
          <!-- Login -->
          <div class="trinputlogin">
            <div class="tagtd nowraponall center valignmiddle tdinputlogin">
              <!-- <span class="span-icon-user">-->
              <span class="fa fa-user"></span>
              <input type="text" id="username" maxlength="255" placeholder="Identifiant" name="username" class="flat input-icon-user minwidth150" value="" tabindex="1" autofocus="autofocus" autocapitalize="off" autocomplete="on" spellcheck="false"
                autocorrect="off">
            </div>
          </div>
          <!-- Password -->
          <div class="trinputlogin">
            <div class="tagtd nowraponall center valignmiddle tdinputlogin">
              <!--<span class="span-icon-password">-->
              <span class="fa fa-key"></span>
              <input type="password" id="password" maxlength="128" placeholder="Mot de passe" name="password" class="flat input-icon-password minwidth150" value="" tabindex="2" autocomplete="off">
            </div>
          </div>
          <!-- Option by hook -->
          <div class="trinputlogin multicompany-trinputlogin">
            <div class="tagtd nowrap text-align-left valignmiddle tdinputlogin">
              <span class="fa fa-globe"><select class="flat maxwidth200 multicompany_select login-entity minwidth180 select2-hidden-accessible" id="entity" name="entity" tabindex="-1" data-select2-id="entity" aria-hidden="true">
                  <option value="1" data-select2-id="2">DISTRIVERT</option>
                  <option value="2">LE PRIMEUR VERT</option>
                </select><span class="select2 select2-container select2-container--default" dir="ltr" data-select2-id="1" style="width: 190px;"><span class="selection"><span
                      class="select2-selection select2-selection--single flat maxwidth200 multicompany_select login-entity minwidth180" role="combobox" aria-haspopup="true" aria-expanded="false" tabindex="3" aria-disabled="false"
                      aria-labelledby="select2-entity-container"><span class="select2-selection__rendered" id="select2-entity-container" role="textbox" aria-readonly="true" title="DISTRIVERT">DISTRIVERT</span><span class="select2-selection__arrow"
                        role="presentation"><b role="presentation"></b></span></span></span><span class="dropdown-wrapper" aria-hidden="true"></span></span>
                <!-- JS CODE TO ENABLE select2 for id = entity -->
                <script>
                  $(document).ready(function() {
                    $('#entity').select2({
                      dir: 'ltr',
                      width: 'resolve',
                      /* off or resolve */
                      minimumInputLength: 0,
                      language: select2arrayoflanguage,
                      matcher: function(params, data) {
                        if ($.trim(params.term) === "") {
                          return data;
                        }
                        keywords = (params.term).split(" ");
                        for (var i = 0; i < keywords.length; i++) {
                          if (((data.text).toUpperCase()).indexOf((keywords[i]).toUpperCase()) == -1) {
                            return null;
                          }
                        }
                        return data;
                      },
                      theme: 'default',
                      /* to add css on generated html components */
                      containerCssClass: ':all:',
                      /* Line to add class of origin SELECT propagated to the new <span class="select2-selection...> tag */
                      selectionCssClass: ':all:',
                      /* Line to add class of origin SELECT propagated to the new <span class="select2-selection...> tag */
                      dropdownCssClass: 'ui-dialog',
                      templateResult: function(data, container) {
                        /* Format visible output into combo list */
                        /* Code to add class of origin OPTION propagated to the new select2 <li> tag */
                        if (data.element) {
                          $(container).addClass($(data.element).attr("class"));
                        }
                        //console.log("data html is "+$(data.element).attr("data-html"));
                        if (data.id == -1 && $(data.element).attr("data-html") == undefined) {
                          return '&nbsp;';
                        }
                        if ($(data.element).attr("data-html") != undefined) {
                          /* If property html set, we decode html entities and use this. */
                          /* Note that HTML content must have been sanitized from js with dol_escape_htmltag(xxx, 0, 0, '', 0, 1) when building the select option. */
                          return htmlEntityDecodeJs($(data.element).attr("data-html"));
                        }
                        return data.text;
                      },
                      templateSelection: function(selection) {
                        /* Format visible output of selected value */
                        if (selection.id == -1) return '<span class="placeholder">' + selection.text + '</span>';
                        return selection.text;
                      },
                      escapeMarkup: function(markup) {
                        return markup;
                      }
                    });
                  });
                </script>
              </span>
            </div>
          </div>
        </div>
      </div> <!-- end div login_right -->
    </div> <!-- end div login_line1 -->
    <div id="login_line2" style="clear: both">
      <!-- Button Connection -->
      <br>
      <div id="login-submit-wrapper">
        <input type="submit" class="button" value="&nbsp; Se connecter &nbsp;" tabindex="5">
      </div>
      <br>
      <div class="center" style="margin-top: 5px;">
        <a class="alogin" href="/user/passwordforgotten.php">Mot de passe oublié ?</a>&nbsp;-&nbsp;<a class="alogin" href="/support/index.php" target="_blank" rel="noopener noreferrer">Besoin d'assistance ?</a></div>
    </div> <!-- end login line 2 -->
  </div> <!-- end login table -->
</form>

Text Content

Dolibarr 19.0.2


DISTRIVERTLE PRIMEUR VERTDISTRIVERT




Mot de passe oublié ? - Besoin d'assistance ?
Bienvenue sur votre espace de Gestion