Jump to content

Individual Login Page and Pilot Registration Examples


Recommended Posts

Posted

I was wondering if thre are examples out there of sites that use a different log in/registration interface with phpvms so that way guests or other are limited in what they see. I am familiar with re-arranging navigation items based on the vanilla crystal skin. However, what i want to try to do is have a single page that would show for the site, that would have the login just for va members and basic VA joining information. I just want to get some ideas on what is out there or what folks may have done as I am new to phpvms.

I also wanted know if others have ever modified their registration_mainform.php file and was it a hard thing to do?

Regards,

Nat

Posted

Not sure if this is what you are talking about but you can limit what links users/pilots see on your site. In your core_navigation file you can use the below code around the links you only want logged in users to see. I have my site set up this way. If you are not logged in then you only see certain links. After login, then more links become available.

<?php if(Auth::LoggedIn())
    {
	    echo '<li><a href="'.url('/profile').'">Pilot Center</a></li>';
    }
    ?>

Posted

Thanks Keith. I am familiar with the core navigation item and I have set up the site to linit what folks see. What I am trying to do is just have a intro page of sorts that a person would not be able to continue withour registering. I guest the best example I could show would be Parkho's site: http://www.parkho.ir/ or the Virtual Amsterdam VA site http://www.amsterdamva.nl/

I want to clarify that I am not looking to mirror any of these sites in any way. I am just trying using the pages as an example and that the page I am thinking about creating would only have a login link and a register link somewhere on the page, and within the page itself maybe some info items or other things. But the page itself would be very basic.

Regards

  • 2 weeks later...
Posted

I would like to know as well. I'm currently creating a VA and the homepage is a separate software and I don't want unregistered users to be able to access the pilots center (which, from what I get, is what you want as well).

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...