This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href="super/assets/style.css" rel="stylesheet" type="text/css" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="super/assets/jquery.min.js" type="text/javascript"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
include 'super/core/init.php'; | |
super_form(); | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php /* do not remove this line */exit;?> | |
<?xml version="1.0" encoding="UTF-8"?> | |
<form> | |
<!-- FORM SETTINGS --> | |
<form_settings> | |
<id>my-form</id> | |
<style>default</style> | |
<send_text>Send message</send_text> | |
<recaptcha public_key="" private_key="" theme="white" /> | |
</form_settings> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<recaptcha public_key="6LcGI80SAAAFAEa5aWA3bwJlJOTnFq3YkQyIDA81" private_key="6LcGIN0SAAAAAGlrBRtXFOTqx8oUjRlk6iew0SBd" theme="white" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<smtp auth="yes" host="smtp.gmail.com" username="[email protected]" password="yourpasswordhere" secure_type="tls" port="587" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- FIELDS SETTINGS --> | |
<fields> | |
<!-- Name --> | |
<new_text_field name="name" label="Name: " icon="user.png" description="Enter your complete name"> | |
<validation> | |
<required>Please, enter a name.</required> | |
</validation> | |
</new_text_field> | |
</fields> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<new_text_field name="uniqueNameHere" label="Field label: " icon="field_icon.png" description="Enter your complete name" default="Default value for input"> | |
</new_text_field> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<new_textarea_field name="uniqueNameHere" label="Field label: " icon="field_icon.png" description="Enter description here" default="Default value for input"> | |
</new_textarea_field> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<new_checkbox_field name="terms" label="I agree with the terms of service."></new_checkbox_field> |
OlderNewer