-
-
Notifications
You must be signed in to change notification settings - Fork 397
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* flycricket terms integration * form tag rename * flycricket pug card removed - form kept * onsubmit removal * flycricket buttons flagged
- Loading branch information
1 parent
3c22b71
commit 3d42c34
Showing
5 changed files
with
34 additions
and
25 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
function fc_submit (e) { | ||
function fc_deploy() { | ||
var form = document.getElementById("fc-form"); | ||
|
||
// fill in the body with the html content | ||
document.getElementById('fc-body').value = getContent('privacy_content') | ||
|
||
return true | ||
} | ||
document.getElementById('fc-terms').value = getContent('tandc_content') | ||
|
||
form.submit(); | ||
} |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,5 @@ | ||
#fc-container.box | ||
#fc-container-text | ||
.fc-title Free privacy policy hosting + website for {{ appName }}. | ||
#fc-callouts | ||
form#fc-form(action='https://app.flycricket.com/import/privacy' method='post' target='_blank' onsubmit='return fc_submit(event)') | ||
input(type='hidden' name='fc-referrer' value='nishant') | ||
input#fc-body(type='hidden' name='fc-body') | ||
input#fc-name(type='hidden' name='fc-name' v-model='appName') | ||
div(style='margin-top: 1em;') | ||
button.button.is-light.is-small | ||
| Learn More | ||
button.button.is-black.is-small | ||
| Deploy | ||
.fc-powered-by | ||
| Powered by | ||
a(href='https://app.flycricket.com/r/nishant?utm_source=partner&utm_medium=website&utm_campaign=privacy_generator' target='_blank' rel='noopener noreferrer') Flycricket | ||
form#fc-form(action='https://app.flycricket.com/import/privacy' method='post' target='_blank') | ||
input(type='hidden' name='fc-referrer' value='nishant') | ||
input#fc-terms(type='hidden' name='fc-terms') | ||
input#fc-body(type='hidden' name='fc-privacy') | ||
input#fc-name(type='hidden' name='fc-name' v-model='appName') |