xtxpatch saves the email settings, still need to handle them

This commit is contained in:
asus
2024-03-31 19:25:39 +02:00
parent b4745ff672
commit 995e230e32
4 changed files with 40 additions and 9 deletions

View File

@@ -34,16 +34,16 @@
</div>
<!--
-->
<div class="send_email">
<input type="checkbox" id="send_email_prof_cipf" name="is_email_prof" <?php if ($email_registration['is_email_prof'] === true) {echo 'checked';} ?> />
<input type="checkbox" id="send_email_prof_cipf" name="is_email_prof" <?php if ($option_register_email_value['is_email_prof'] === true) {echo 'checked';} ?> />
<label for="send_email_prof_cipf">envoyer un email à l'inscription des profs ?</label>
</div>
<div class="send_email">
<input type="checkbox" id="send_email_partner_cipf" name="is_email_partner" <?php if ($email_registration['is_email_partner'] === true) {echo 'checked';} ?> />
<input type="checkbox" id="send_email_partner_cipf" name="is_email_partner" <?php if ($option_register_email_value['is_email_partner'] === true) {echo 'checked';} ?> />
<label for="send_email_partner_cipf">envoyer un email à l'inscription des partenaires ?</label>
</div>
-->
<input type="submit" value="send"/>
</form>