DIR Return Create A Forum - Home
---------------------------------------------------------
Create A Forum - Support Forums
HTML https://support.createaforum.com
---------------------------------------------------------
*****************************************************
DIR Return to: General Support
*****************************************************
#Post#: 14411--------------------------------------------------
How do I create a Login button with EzPortal?
DIR By: clayhanson
Date: September 16, 2014, 5:39 pm
---------------------------------------------------------
I've been thinking and searching on this issue for a while, with
no avail. So, i'm creating a ezportal page, and i've made a
Login section on it. I, however, cannot find the function for
the login button. It's very confusing, so I figured i'd come
here for help. (And yes, I have used Google Chrome's Inspect
Element feature on the login buttons on my website's index
page.) The current link it sends you to is
HTML http://bbsserver.createaforum.com/templates/default/login.aspx
HTML http://bbsserver.createaforum.com/templates/default/login.aspx
My current forums URL: Blackbeard Forums
HTML http://bbsserver.createaforum.com/index.php
The page i'm having issues on (the portal page): Blackbeard
Forums Guest Home
HTML http://bbsserver.createaforum.com/index.php?action=ezportal;sa=page;p=4
I'd really appreciate any help.
#Post#: 14412--------------------------------------------------
Re: How do I create a Login button with EzPortal?
DIR By: CreateAForum
Date: September 17, 2014, 1:11 am
---------------------------------------------------------
That link doesn't seem right at all....
HTML http://bbsserver.createaforum.com/templates/default/login.aspx
Do you have another website or you do just want to link to loing
page here?
If so it would be
HTML http://bbsserver.createaforum.com/index.php?action=login
#Post#: 14421--------------------------------------------------
Re: How do I create a Login button with EzPortal?
DIR By: clayhanson
Date: September 17, 2014, 2:19 pm
---------------------------------------------------------
--- Quote from: CreateAForum link ---
>
> That link doesn't seem right at all....
HTML http://bbsserver.createaforum.com/templates/default/login.aspx
> Do you have another website or you do just want to link to
loing page here?
> If so it would be
HTML http://bbsserver.createaforum.com/index.php?action=login
>
--- End Quote ---
What I mean is... When you put in your username and password
into an input box, what is the javascript/HTML script that runs
when you click the Login button? I don't want the link to my
website's login page.
#Post#: 14422--------------------------------------------------
Re: How do I create a Login button with EzPortal?
DIR By: CreateAForum
Date: September 17, 2014, 2:42 pm
---------------------------------------------------------
I don't understand what are you trying to do.
#Post#: 14423--------------------------------------------------
Re: How do I create a Login button with EzPortal?
DIR By: clayhanson
Date: September 17, 2014, 6:25 pm
---------------------------------------------------------
I have posted an image on the OP.
#Post#: 14424--------------------------------------------------
Re: How do I create a Login button with EzPortal?
DIR By: CreateAForum
Date: September 17, 2014, 6:35 pm
---------------------------------------------------------
You can use the ezblock login block in ezportal to do this.
#Post#: 14425--------------------------------------------------
Re: How do I create a Login button with EzPortal?
DIR By: clayhanson
Date: September 17, 2014, 6:53 pm
---------------------------------------------------------
--- Quote from: CreateAForum link ---
>
> You can use the ezblock login block in ezportal to do this.
>
--- End Quote ---
Yes, but I really want to go a different direction, to make my
forum stand out. I understand that you can use eZBlock, but most
guests just assume that the "Guest Home" tab on my index page is
where they should go.
#Post#: 14426--------------------------------------------------
Re: How do I create a Login button with EzPortal?
DIR By: CreateAForum
Date: September 17, 2014, 7:11 pm
---------------------------------------------------------
Example form HTML code which might work
--- Code ---
<form id="guest_form" action="
HTML http://bbsserver.createaforum.com/index.php?action=login2<br
/>method="post" accept-charset="ISO-8859-1">
<div class="info">Welcome, <strong>Guest</strong>. Please
<a href="
HTML http://bbsserver.createaforum.com/index.php?action=login>login</a><br
/>or <a href="
HTML http://bbsserver.createaforum.com/index.php?action=register">register</a>.
Did you miss your <a
href="
HTML http://support.createaforum.com/index.php?action=activate;PHPSESSID=0b0fe07449634924e13cf8cfee5115de">activation<br
/>email</a>?</div>
<input name="user" size="10" class="input_text"
type="text">
<input name="passwrd" size="10" class="input_password"
type="password">
<select name="cookielength">
<option value="60">1 Hour</option>
<option value="1440">1 Day</option>
<option value="10080">1 Week</option>
<option value="43200">1 Month</option>
<option value="-1" selected="selected">Forever</option>
</select>
<input value="Login" class="button_submit" type="submit">
<div class="info">Login with username, password and
session length</div>
<input name="hash_passwrd" value="" type="hidden">
</form>
--- End Code ---
#Post#: 14427--------------------------------------------------
Re: How do I create a Login button with EzPortal?
DIR By: clayhanson
Date: September 17, 2014, 8:01 pm
---------------------------------------------------------
--- Quote from: CreateAForum link ---
>
> Example form HTML code which might work
>
--- Code ---
> <form id="guest_form" action="
HTML http://bbsserver.createaforum.com/index.php?action=login2<br
/>method="post" accept-charset="ISO-8859-1">
> <div class="info">Welcome, <strong>Guest</strong>. Please <a
href="
HTML http://bbsserver.createaforum.com/index.php?action=login>login</a><br
/>or <a href="
HTML http://bbsserver.createaforum.com/index.php?action=register">register</a>.
> Did you miss your <a
href="
HTML http://support.createaforum.com/index.php?action=activate;PHPSESSID=0b0fe07449634924e13cf8cfee5115de">activation<br
/>email</a>?</div>
> <input name="user" size="10" class="input_text" type="text">
> <input name="passwrd" size="10" class="input_password"
type="password">
> <select name="cookielength">
> <option value="60">1 Hour</option>
> <option value="1440">1 Day</option>
> <option value="10080">1 Week</option>
> <option value="43200">1 Month</option>
> <option value="-1" selected="selected">Forever</option>
> </select>
> <input value="Login" class="button_submit" type="submit">
>
> <div class="info">Login with username, password and session
length</div>
> <input name="hash_passwrd" value="" type="hidden">
> </form>
>
--- End Code ---
>
--- End Quote ---
Thanks. I'll try it out! :)
#Post#: 14428--------------------------------------------------
Re: How do I create a Login button with EzPortal?
DIR By: clayhanson
Date: September 17, 2014, 8:07 pm
---------------------------------------------------------
I just tried your HTML, and when I pushed the login button, this
came up:
--- Quote from: Google Chrome ---
> Forbidden
> You don't have permission to access /
HTML http://bbsserver.createaforum.com/index.php
on this server.
--- End Quote ---
*****************************************************
Page 1 of 1