How to integrate an inline frame into a form

Collapse
X
 
  • Time
  • Show
Clear All
new posts

  • navaldesign
    replied
    Re: How to integrate an inline frame into a form

    I would even make it simpler: They have to agree to the EULA to go on, correct? So just put a text link in the next pages, such us "By Using this Service I confirm that I have read and agree with the End User's Licence Agreement" linking the underlined text to your EULA page. Legally you are OK, and you don't need to do any form at all. Just create the EULA page.

    Leave a comment:


  • Watdaflip
    replied
    Re: How to integrate an inline frame into a form

    It might be easier to just use textarea. Since you want to require the box be checked your going to have to use php for that anyway... so you can just use some code like this

    <textarea><? require_once("eula.html"); ?></textarea>
    <input type="checkbox" name="agree" value="TRUE" />

    <?
    if($_POST['agree'] == "TRUE")
    {
    echo "Terms Agreed To"
    }
    else
    {
    echo "Terms Not Agreed To"
    }
    ?>

    Now I don't use BV.. but I would think you can make a textarea with it... and that you can set the value of that textarea to "<? require_once("eula.html"); ?>"... eula.html being the page with all the terms (or you can just copy and paste the terms as the value)

    Both of these ways will work.. both will acknowledge that your users had the chance to read the EULA... my way just has the visual of a required checkbox...

    Leave a comment:


  • Girlonthehill
    replied
    Re: How to integrate an inline frame into a form

    Make, size and place your frame. Set up the page that will carry the text you want to put into your frame - remember to put you text top left of the page. Then use > insert > form > advanced button as your accept button. Go to it's properties and make it an on click button and set the URL to where you want to navigate to.

    I hope this helps.

    Leave a comment:


  • wgreene
    started a topic How to integrate an inline frame into a form

    How to integrate an inline frame into a form

    Hello,

    I know how to put a form together but what I want to do is include an inline frame with an end user's license agreement, then have the "yes I agree" button required and then forwarded to another page. There is probably a simple way to do this since I don't need anything to post or interact with a script.

    Thanks for any help.
Working...
X