I usually see password recovery (for use when user cannot remember his password but knows his username) offered along side user name lookup (for use when user cannot remember his login name but knows his email address).
I'm afraid I don't know enough about .net to take advantage of the link offered. Could you possibly point me at Umbraco specific information?
I'm afraid there's no umbraco specific information about this subject, this is pure asp.net! If you need user name lookup, you'll have to do this yourself
add User name lookup / password reset functionality to login form
Hi! We're using the following to generate a login form:
<umbraco:Item field="bodyText" runat="server"></umbraco:Item>
<form runat="server">
<asp:LoginView ID="UmbracoLoginView" runat="server">
<AnonymousTemplate>
<asp:Login ID="Login1" runat="server"></asp:Login>
</AnonymousTemplate>
<LoggedInTemplate>
Welcome
<asp:LoginName ID="LoginName1" runat="server" />
<asp:LoginStatus ID="LoginStatus1" runat="server" />
</LoggedInTemplate>
</asp:LoginView>
</form>
Is there an easy way to add User name lookup / password reset functionality to the login form?
Thanks in advance.
Yes, use the PasswordRecovery control for that. And what do you mean with user name lookup?
Cheers,
/Dirk
I usually see password recovery (for use when user cannot remember his password but knows his username) offered along side user name lookup (for use when user cannot remember his login name but knows his email address).
I'm afraid I don't know enough about .net to take advantage of the link offered. Could you possibly point me at Umbraco specific information?
Thanks in advance.
I'm afraid there's no umbraco specific information about this subject, this is pure asp.net! If you need user name lookup, you'll have to do this yourself
Cheers,
/Dirk
is working on a reply...