DNN 6 Login Button


Author Message
SteveS

Posted: 3/1/2012
Quote message 

You can remove the DNN login tag from page.ascx and still log in. Simply append "?clt=login" after the url ending in default.aspx to the dnn site url, hit enter, and the login screen appears. This is great for sites who do not want to have users attempt to login.
 
pat

Posted: 3/10/2012
Quote message 

Typo there steve

should read

?ctl=login
 
pancho15

Posted: 3/10/2012
Quote message 

or simply www.yoursite.com/login.aspx

 
Antony

Posted: 3/19/2012
Quote message 

In previous skins we were able to put FALSE to erase login and Register but I don't see nothing like that on new ascx files ???

What would be the code to delete ?
Thanks
 
Terri

Posted: 3/30/2012
Quote message 

To move the Login and User name to the footer, and remove it from the menu - this is what my programmer made for me... It looks difficult but is really simple

1) On the Footer text box in artisteer add:
<p>Powered by <a href="http://yoursite.com" target="_blank">Your Company</a></p><!-- Begin custom footer-->
<!-- *****delete this line*****

<ul class="footer-links">
<li>

</li>
</ul>
<p class="copyright">
<dnn:COPYRIGHT runat="server" ID="dnnCOPYRIGHT" /><br />
<dnn:PRIVACY ID="dnnPrivacy" runat="server" /> | <dnn:TERMS runat="server" ID="dnnTerms" /> | <dnn:LOGIN runat="server" ID="dnnLOGIN2" /> | <dnn:USER ID="USER" runat="server" />
</p>

<!== End custom footer-->

2) In the CSS options add this:
/* custom css */ ul.footer-links li {list-style-type:none;}

3) Change the page.ascx like this:

a) Remove

<span id="art-login"><dnn:LOGIN ID="dnnLOGIN" runat="server" /></span>
       <span id="art-user"><dnn:USER ID="dnnUSER" runat="server" /></span>

b) and remove

<!-- *****delete this line*****


 
Garry

Posted: 12/2/2012
Quote message 

@ Carmen

Can you explain your requirement in some detail