email sign up

Adam Howard

Well-known member
email-sign-up.webp

Where would I find the template or phrase that would allow me to change the message where it reads

Email:

Please and thank you in advance :)
 
It will have to do for now.

I got so f*cking tired of Yahoo and Rocket Mail (also owned by Yahoo).

I've banned further registration there. So I need to quickly note on the sign up page that both of them are not accepted.

..... They wouldn't get the confirmation e-mail any way.
 
How do I add a phrase below the Email address box. For example under the "Name:" box (above) there is a phrase "this is the name that will be shown with your messages...." Would like to add a phrase below "Email:" box (circled above). If you could be specific as I am new, it would help a lot.

Thanks in advance.
 
How do I add a phrase below the Email address box. For example under the "Name:" box (above) there is a phrase "this is the name that will be shown with your messages...." Would like to add a phrase below "Email:" box (circled above). If you could be specific as I am new, it would help a lot.

Thanks in advance.
Admin Control Panel -> Appearance (tab) -> Styles & Templates -> Templates -> register_form

Search and find:

Rich (BB code):
<dl class="ctrlUnit">
<dt><label for="ctrl_email">{xen:phrase email}:</label></dt>
<dd>
                        <input type="email" name="email" value="{$fields.email}" dir="ltr" class="textCtrl" id="ctrl_email" />
                       
                </dd>
</dl>

Below the red code, insert the contents below:

Code:
<p class="explain">Blah blah blah</p>

So the result will be something like this:

Rich (BB code):
<dl class="ctrlUnit">
<dt><label for="ctrl_email">{xen:phrase email}:</label></dt>
<dd>
                        <input type="email" name="email" value="{$fields.email}" dir="ltr" class="textCtrl" id="ctrl_email" />
                        <p class="explain">Blah blah blah</p>
                </dd>
</dl>

Of course, replace "blah blah blah" with anything you wish, (y)
 
Admin Control Panel -> Appearance (tab) -> Styles & Templates -> Templates -> register_form

Search and find:

Rich (BB code):
<dl class="ctrlUnit">
<dt><label for="ctrl_email">{xen:phrase email}:</label></dt>
<dd>
                        <input type="email" name="email" value="{$fields.email}" dir="ltr" class="textCtrl" id="ctrl_email" />
                     
                </dd>
</dl>

Below the red code, insert the contents below:

Code:
<p class="explain">Blah blah blah</p>

So the result will be something like this:

Rich (BB code):
<dl class="ctrlUnit">
<dt><label for="ctrl_email">{xen:phrase email}:</label></dt>
<dd>
                        <input type="email" name="email" value="{$fields.email}" dir="ltr" class="textCtrl" id="ctrl_email" />
                        <p class="explain">Blah blah blah</p>
                </dd>
</dl>

Of course, replace "blah blah blah" with anything you wish, (y)
You sir are outstanding. Thank you.
 
Top Bottom