How can i add Login & Sign Up button in the main page
Posted:
08 Jun 2015, 16:58
by mhmdup
Dear
How can i add Login & Sign Up button in the main page or main menu
Regards
Re: How can i add Login & Sign Up button in the main page
Posted:
10 Jun 2015, 13:36
by Koduc
Template for main page is located at /themes/classic/views/layouts/main.php
You can insert following code (for example):
- Code: Select all
<?php
echo CHtml::link('Log in link', array('/site/login'));
echo '<br/>';
echo CHtml::link('Registration link', array('/site/register'));
?>
Re: How can i add Login & Sign Up button in the main page
Posted:
30 Jun 2015, 06:37
by Ebr
Hi,
would you show the location where to add this code? I opened the main.php file but could not figure out where to add above code to display Login & Register in main page.
Please advise.