Where can I find the function that handles the login for DNN? I would like to add custom features to the login and I don't see the function in Login.ascx.vb (unless I missed it).

There is a tag and a tag that forms the login. I figure one of these has the actual "Login" button, but I cannot seem to figure out where they're coming from.

Here is as far as I've found where the login is located

                <DNN:DNNTabStrip 
                ID="tsLogin" 
                runat="server" 
                TabRenderMode="All"
                CssTabContainer="LoginTabGroup"
                CssContentContainer="LoginContainerGroup" 
                DefaultContainerCssClass="LoginContainer"
                DefaultLabel-CssClass="LoginTab"
                DefaultLabel-CssClassHover="LoginTabHover"
                DefaultLabel-CssClassSelected="LoginTabSelected" 
                visible="false" />
            <asp:Panel ID="pnlLoginContainer" runat="server" style="text-align:left" CssClass="LoginPanel" Visible="false" />
link|improve this question

69% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Check out the /desktopmodules/AuthenticationServices directory. The out-of-the-box login control should be coming from DNN/Login.ascx.

You should be able to add user controls to that file.

link|improve this answer
feedback

the question is how do you modify the generated HTML code of the

since it generate HTML table

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.