Creata pagina con "<div style="max-width:900px; margin:0 auto; padding:20px;"> <h1 style="font-size:1.8em; color:#1f334d; margin-bottom:10px;"> MESB Membership Confirmation </h1> <p style="font-size:1.1em; color:#444;"> Thank you for your participation in the <b>Masticationpedia Ethical and Scientific Board (MESB)</b>. Please confirm your acceptance or decline of the role using the options below. </p> <div style="margin-top:22px; padding:18px 20px; background:#f8fbff; border-radiu..."
 
Nessun oggetto della modifica
Riga 5: Riga 5:
</h1>
</h1>


<p style="font-size:1.1em; color:#444;">
<p style="font-size:1.05em; color:#444; line-height:1.6;">
   Thank you for your participation in the <b>Masticationpedia Ethical and Scientific Board (MESB)</b>.
   Thank you for being part of the <b>Masticationpedia Ethical and Scientific Board (MESB)</b>.
   Please confirm your acceptance or decline of the role using the options below.
   This page explains how to <b>formally accept</b> (or decline) your role in a simple and fully
  documented way, using either <b>LinkedIn</b> or <b>email</b>.
</p>
</p>


<div style="margin-top:22px; padding:18px 20px; background:#f8fbff; border-radius:14px; border:1px solid #d7e0ef;">
<div style="margin-top:22px; padding:18px 20px; background:#f8fbff; border-radius:14px; border:1px solid #d7e0ef;">
   <h3 style="margin-top:0; color:#223347;">Your decision</h3>
   <h2 style="margin-top:0; font-size:1.25em; color:#223347; font-weight:600;">
    1. How to accept the MESB membership
  </h2>


   <label for="mesb-name"><b>Your full name:</b></label><br>
   <p style="color:#444; line-height:1.6;">
  <input id="mesb-name" type="text" style="width:100%; padding:8px; border:1px solid #ccd4e0; border-radius:8px; margin-top:6px;" />
    You can confirm your acceptance in one of the following ways (both are equally valid
    and will be archived as formal documentation):
  </p>


   <label for="mesb-comments" style="margin-top:14px; display:block;"><b>Optional comments:</b></label>
   <ol style="margin-top:8px; padding-left:22px; color:#444; line-height:1.6;">
  <textarea id="mesb-comments" rows="4" style="width:100%; padding:8px; border:1px solid #ccd4e0; border-radius:8px;"></textarea>
    <li>
      <b>Via LinkedIn InMail</b> – reply to the message you received from Masticationpedia with
      a short sentence such as:<br/>
      <span style="display:block; margin-top:6px; padding:8px 10px; background:#ffffff; border-radius:8px; border:1px solid #dde3f0; font-size:0.95em;">
        “I accept the invitation to join the Masticationpedia Ethical and Scientific Board (MESB).”
      </span>
    </li>
    <li style="margin-top:10px;">
      <b>Via email</b> – send a message to<br/>
      <b>ethics@masticationpedia.org</b><br/>
      with the subject:<br/>
      <span style="display:block; margin-top:4px; padding:6px 10px; background:#ffffff; border-radius:8px; border:1px solid #dde3f0; font-size:0.95em;">
        Subject: MESB – Membership Acceptance
      </span>
      and the same short sentence in the body of the email.
    </li>
  </ol>
</div>


  <div style="margin-top:18px;">
<div style="margin-top:22px; padding:18px 20px; background:#f4fbf5; border-radius:14px; border:1px solid #cfe5d1;">
    <button onclick="sendMESBDecision('ACCEPT')"
  <h2 style="margin-top:0; font-size:1.25em; color:#1e3c2a; font-weight:600;">
      style="background:#2e7d32; color:white; padding:10px 24px; border:none; border-radius:8px; cursor:pointer;">
    2. How to decline (if you are unable to participate)
      ✔️ I ACCEPT the membership
  </h2>
    </button>


    <button onclick="sendMESBDecision('DECLINE')"  
  <p style="color:#35503d; line-height:1.6;">
      style="background:#c62828; color:white; padding:10px 24px; border:none; border-radius:8px; cursor:pointer; margin-left:12px;">
    If, for any reason, you prefer <b>not</b> to join the MESB, you can simply reply by LinkedIn
      ❌ I DECLINE the membership
    or email with a short message such as:
     </button>
  </p>
 
  <div style="margin-top:6px; padding:8px 10px; background:#ffffff; border-radius:8px; border:1px solid #cfe3d5; font-size:0.95em;">
    “Thank you for the invitation. At this time I prefer not to join the Masticationpedia
     Ethical and Scientific Board.”
   </div>
   </div>
  <p style="margin-top:10px; color:#35503d;">
    Your decision will be fully respected and archived for transparency.
  </p>
</div>
</div>


<div id="mesb-result" style="margin-top:22px; font-size:1.05em; color:#1e3c2a;"></div>
<div style="margin-top:22px; padding:18px 20px; background:#ffffff; border-radius:14px; border:1px solid #e3e6ee;">
  <h2 style="margin-top:0; font-size:1.25em; color:#223347; font-weight:600;">
    3. Archiving of your response
  </h2>


<script>
  <p style="color:#444; line-height:1.6;">
function sendMESBDecision(action) {
    All confirmations (acceptance or decline), received via LinkedIn or email, are archived
     const name = document.getElementById("mesb-name").value.trim();
     in the internal MESB records and, when relevant, referenced in the
     const comments = document.getElementById("mesb-comments").value.trim();
     <b>Ethical Decisions Register (EDR)</b>.
  </p>


     if (!name) {
  <p style="font-size:0.9em; color:#666; margin-top:6px;">
        alert("Please enter your full name before submitting.");
     This page is only a practical guide for Board members. No additional action is required
        return;
    beyond your LinkedIn or email reply.
    }
  </p>
</div>


    fetch("/MESB/mesb_accept_api.php", {
<div style="text-align:center; margin-top:26px; font-size:0.9em; color:#888;">
        method: "POST",
  For any questions, please contact: <b>ethics@masticationpedia.org</b>
        headers: { "Content-Type": "application/json" },
</div>
        body: JSON.stringify({ name: name, action: action, comments: comments })
    })
    .then(response => response.json())
    .then(data => {
        document.getElementById("mesb-result").innerHTML =
            "<b>" + data.message + "</b>";
    })
    .catch(error => {
        document.getElementById("mesb-result").innerHTML =
            "<b style='color:red;'>Error submitting your response.</b>";
    });
}
</script>


</div>
</div>

Versione delle 11:00, 25 nov 2025

MESB Membership Confirmation

Thank you for being part of the Masticationpedia Ethical and Scientific Board (MESB). This page explains how to formally accept (or decline) your role in a simple and fully documented way, using either LinkedIn or email.

1. How to accept the MESB membership

You can confirm your acceptance in one of the following ways (both are equally valid and will be archived as formal documentation):

  1. Via LinkedIn InMail – reply to the message you received from Masticationpedia with a short sentence such as:
    “I accept the invitation to join the Masticationpedia Ethical and Scientific Board (MESB).”
  2. Via email – send a message to
    ethics@masticationpedia.org
    with the subject:
    Subject: MESB – Membership Acceptance and the same short sentence in the body of the email.

2. How to decline (if you are unable to participate)

If, for any reason, you prefer not to join the MESB, you can simply reply by LinkedIn or email with a short message such as:

   “Thank you for the invitation. At this time I prefer not to join the Masticationpedia
   Ethical and Scientific Board.”

Your decision will be fully respected and archived for transparency.

3. Archiving of your response

All confirmations (acceptance or decline), received via LinkedIn or email, are archived in the internal MESB records and, when relevant, referenced in the Ethical Decisions Register (EDR).

This page is only a practical guide for Board members. No additional action is required beyond your LinkedIn or email reply.

 For any questions, please contact: ethics@masticationpedia.org