330cc427b8
- Added 'panelDisplayLocation' option to choose where to show the subscription form - Manage malformed email (it crashed EPL) - Brought back popup form to subscribe (with the new options + unsubscription) - Popup form is a copy of the form in mysettings menu, so no more 2 html codes in 2 different places - On unsubscription, only remove the email from "globalAuthor" row if the email is the same. - Put all css styles in css file - Some cleaning
21 lines
979 B
Text
21 lines
979 B
Text
<p>
|
|
<input type="checkbox" id="options-emailNotifications"></input>
|
|
<label for="options-emailNotifications">Email Notifications</label>
|
|
<div class="ep_email_settings">
|
|
<form id='ep_email_form_mysettings'>
|
|
<input name='ep_email' class='ep_email_input' placeholder='your@email.com' type=email>
|
|
<br />
|
|
<label>Send a mail when someone..</label>
|
|
<br />
|
|
<input name='ep_email_onStart' type="checkbox" class="ep_email_checkbox"></input>
|
|
<label for="ep_email_onStart">starts editing the pad</label>
|
|
<br />
|
|
<input name='ep_email_onEnd' type="checkbox" class="ep_email_checkbox"></input>
|
|
<label for="ep_email_onEnd">finish editing the pad</label>
|
|
<input name='ep_email_option' type=hidden >
|
|
<br />
|
|
<input name='ep_email_subscribe' type=button class="ep_email_buttons" value=subscribe>
|
|
<input name='ep_email_unsubscribe'type=button class="ep_email_buttons" value=unsubscribe>
|
|
</form>
|
|
</div>
|
|
</p>
|