thecodemeist3r
06-13-2008, 02:41 PM
Hey guys, First time making a site here, so I am still learning the basics.
I making a site where the user goes to "sign up", and I am wanting a disclaimer box, but I have no idea where to start.
Any help would be much appreciated.
rafiki
06-13-2008, 04:05 PM
What do you mean a disclaimer box? A pop up? A div? A form? there are many things you could do, be a little more specific please.
thecodemeist3r
06-14-2008, 08:31 AM
What I mean is:
The user fills out all of there details, like name, address.
This is for a form.
Then at the bottom of the page, there is a square box thats more like the terms and conditions of signing up are.
Thanks, anyhelp would be much appreciated.
TajinderSingh
06-14-2008, 09:09 AM
Hi!
If you mean by the Terms & Conditions like text to show while user registers,
then visit the Registration page at http://www.codingforums.com/register.php
The scrollable text area with Forum Rules is also called as Disclaimer Box
To create this simply put the following code
<textarea id="txtArId" name="txtArName" rows=4 cols=2>My disclaimer Text Here</textarea><br>
<input type="checkbox" id="chIAgree" name="chIAgree"> I Agree
Explain your need if the problem is yet not resolved.
Thanks!
binaryWeapon
06-15-2008, 03:12 AM
Either a scrolling DIV or a textarea. I would recomend a scrolling div.
<div style="overflow:scroll;"></div>
gnomeontherun
06-15-2008, 08:11 PM
http://vflayouts.com/scrollboxes.php
Not the most pleasing site to look at, but shows many examples of similar things.
olie122333
06-16-2008, 07:43 PM
you mean a script that checks if a "agree" box has been checked ?
if so, you are probably best off going for JavaScript ;)