News:

Create A Forum Installed

Author Topic: How do I create a Login button with EzPortal?  (Read 991 times)

0 Members and 1 Guest are viewing this topic.

Offline clayhanson

  • Newbie
  • *
  • Posts: 10
  • Karma: 0
  • Gender: Male
  • Blackbeard Forums Owner
  • Location: Arizona
    • View Profile
    • Blackbeard Forums

Badges: (View All)
Combination Search Level 2
How do I create a Login button with EzPortal?
« on: September 16, 2014, 10:39:19 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 http://bbsserver.createaforum.com/templates/default/login.aspx


My current forums URL: Blackbeard Forums


The page i'm having issues on (the portal page): Blackbeard Forums Guest Home


I'd really appreciate any help.
« Last Edit: September 17, 2014, 11:24:49 pm by clayhanson »
Visit my forums!
http://bbsserver.createaforum.com/index.php

My SteamCommunity username is:
WorstedTails3

Share on Facebook Share on Twitter


Offline CreateAForum

  • Administrator
  • *****
  • Posts: 7186
  • Karma: 327
    • View Profile

Badges: (View All)
Avatar Linux User Tenth year Anniversary
Re: How do I create a Login button with EzPortal?
« Reply #1 on: September 17, 2014, 06:11:55 am »
That link doesn't seem right at all.... 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 http://bbsserver.createaforum.com/index.php?action=login
Like Create A Forum? Support me at https://www.patreon.com/vbgamer45/

Offline clayhanson

  • Newbie
  • *
  • Posts: 10
  • Karma: 0
  • Gender: Male
  • Blackbeard Forums Owner
  • Location: Arizona
    • View Profile
    • Blackbeard Forums

Badges: (View All)
Combination Search Level 2
Re: How do I create a Login button with EzPortal?
« Reply #2 on: September 17, 2014, 07:19:44 pm »
That link doesn't seem right at all.... 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 http://bbsserver.createaforum.com/index.php?action=login
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.
Visit my forums!
http://bbsserver.createaforum.com/index.php

My SteamCommunity username is:
WorstedTails3

Offline CreateAForum

  • Administrator
  • *****
  • Posts: 7186
  • Karma: 327
    • View Profile

Badges: (View All)
Avatar Linux User Tenth year Anniversary
Re: How do I create a Login button with EzPortal?
« Reply #3 on: September 17, 2014, 07:42:04 pm »
I don't understand what are you trying to do.
Like Create A Forum? Support me at https://www.patreon.com/vbgamer45/

Offline clayhanson

  • Newbie
  • *
  • Posts: 10
  • Karma: 0
  • Gender: Male
  • Blackbeard Forums Owner
  • Location: Arizona
    • View Profile
    • Blackbeard Forums

Badges: (View All)
Combination Search Level 2
Re: How do I create a Login button with EzPortal?
« Reply #4 on: September 17, 2014, 11:25:13 pm »
I have posted an image on the OP.
Visit my forums!
http://bbsserver.createaforum.com/index.php

My SteamCommunity username is:
WorstedTails3

Offline CreateAForum

  • Administrator
  • *****
  • Posts: 7186
  • Karma: 327
    • View Profile

Badges: (View All)
Avatar Linux User Tenth year Anniversary
Re: How do I create a Login button with EzPortal?
« Reply #5 on: September 17, 2014, 11:35:30 pm »
You can use the ezblock login block in ezportal to do this.
Like Create A Forum? Support me at https://www.patreon.com/vbgamer45/

Offline clayhanson

  • Newbie
  • *
  • Posts: 10
  • Karma: 0
  • Gender: Male
  • Blackbeard Forums Owner
  • Location: Arizona
    • View Profile
    • Blackbeard Forums

Badges: (View All)
Combination Search Level 2
Re: How do I create a Login button with EzPortal?
« Reply #6 on: September 17, 2014, 11:53:12 pm »
You can use the ezblock login block in ezportal to do this.
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.
Visit my forums!
http://bbsserver.createaforum.com/index.php

My SteamCommunity username is:
WorstedTails3

Offline CreateAForum

  • Administrator
  • *****
  • Posts: 7186
  • Karma: 327
    • View Profile

Badges: (View All)
Avatar Linux User Tenth year Anniversary
Re: How do I create a Login button with EzPortal?
« Reply #7 on: September 18, 2014, 12:11:26 am »
Example form HTML code which might work
Code: [Select]
<form id="guest_form" action=" http://bbsserver.createaforum.com/index.php?action=login2 method="post" accept-charset="ISO-8859-1">
<div class="info">Welcome, <strong>Guest</strong>. Please <a href=" http://bbsserver.createaforum.com/index.php?action=login>login</a> or <a href=" http://bbsserver.createaforum.com/index.php?action=register">register</a>.<br>Did you miss your <a href="http://support.createaforum.com/index.php?action=activate;PHPSESSID=0b0fe07449634924e13cf8cfee5115de">activation 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"><br>
<div class="info">Login with username, password and session length</div>
<input name="hash_passwrd" value="" type="hidden">
</form>
Like Create A Forum? Support me at https://www.patreon.com/vbgamer45/

Offline clayhanson

  • Newbie
  • *
  • Posts: 10
  • Karma: 0
  • Gender: Male
  • Blackbeard Forums Owner
  • Location: Arizona
    • View Profile
    • Blackbeard Forums

Badges: (View All)
Combination Search Level 2
Re: How do I create a Login button with EzPortal?
« Reply #8 on: September 18, 2014, 01:01:32 am »
Example form HTML code which might work
Code: [Select]
<form id="guest_form" action=" http://bbsserver.createaforum.com/index.php?action=login2 method="post" accept-charset="ISO-8859-1">
<div class="info">Welcome, <strong>Guest</strong>. Please <a href=" http://bbsserver.createaforum.com/index.php?action=login>login</a> or <a href=" http://bbsserver.createaforum.com/index.php?action=register">register</a>.<br>Did you miss your <a href="http://support.createaforum.com/index.php?action=activate;PHPSESSID=0b0fe07449634924e13cf8cfee5115de">activation 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"><br>
<div class="info">Login with username, password and session length</div>
<input name="hash_passwrd" value="" type="hidden">
</form>
Thanks. I'll try it out! :)
Visit my forums!
http://bbsserver.createaforum.com/index.php

My SteamCommunity username is:
WorstedTails3

Offline clayhanson

  • Newbie
  • *
  • Posts: 10
  • Karma: 0
  • Gender: Male
  • Blackbeard Forums Owner
  • Location: Arizona
    • View Profile
    • Blackbeard Forums

Badges: (View All)
Combination Search Level 2
Re: How do I create a Login button with EzPortal?
« Reply #9 on: September 18, 2014, 01:07:07 am »
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 / http://bbsserver.createaforum.com/index.php on this server.
Visit my forums!
http://bbsserver.createaforum.com/index.php

My SteamCommunity username is:
WorstedTails3

 

Related Topics

  Subject / Started by Replies Last post
1 Replies
890 Views
Last post November 01, 2012, 06:09:29 pm
by CreateAForum
4 Replies
449 Views
Last post January 19, 2013, 11:03:56 pm
by xlxrushnsprayx
1 Replies
332 Views
Last post June 13, 2013, 04:36:04 pm
by CreateAForum
2 Replies
716 Views
Last post July 14, 2013, 02:21:28 pm
by WholesaleChat
3 Replies
607 Views
Last post August 06, 2013, 07:41:38 pm
by CreateAForum