ResetPassword.cshtml
This view provides a form for users to reset their password. It typically includes fields for entering a new password and confirming it.
ResetPasswordConfirmation.cshtml
This view confirms that the user's password has been successfully reset. It usually thanks the user and provides further instructions or a link to log in.
SendCode.cshtml
allows users to select a method for receiving a verification code (e.g., via email or SMS) as part of a multi-factor authentication process. It typically lists the available options and provides a button to send the code.
VerifyCode.cshtml
provides a form for users to enter the verification code they received. It is part of the multi-factor authentication process to verify the user's identity.
ExternalLoginsListPartial.cshtml
This partial view displays a list of external login providers (e.g., Google, Facebook) that users can use to log in or link to their account. It is often included in other views like the login or register views.
ConfirmEmail.cshtml
confirms that the user's email address has been successfully verified. It usually thanks the user and provides further instructions or a link to log in.
ExternalLoginConfirmation.cshtml
This view is shown to users who are logging in with an external login provider for the first time. It asks for any additional information required to complete the registration process (e.g., username, additional profile details).
ExternalLoginFailure.cshtml
informs the user that the external login attempt has failed. It typically provides information about what went wrong and offers options to try again or use a different login method.
ForgotPassword.cshtml
provides a form for users to request a password reset link. It typically asks for the user's email address to send the reset instructions.
ForgotPasswordConfirmation.cshtml
confirms that the password reset link has been sent to the user's email address. It usually thanks the user and provides further instructions.
Login.cshtml
This view provides a form for users to log in to their account. It typically includes fields for the username/email and password, and may include options for remembering the user or links to reset the password or register.
Register.cshtml
This view provides a form for users to create a new account. It typically includes fields for entering a username, email address, password, and confirming the password, along with any other required registration information.
ResetPassword.cshtml This view provides a form for users to reset their password. It typically includes fields for entering a new password and confirming it.
ResetPasswordConfirmation.cshtml This view confirms that the user's password has been successfully reset. It usually thanks the user and provides further instructions or a link to log in.
SendCode.cshtml allows users to select a method for receiving a verification code (e.g., via email or SMS) as part of a multi-factor authentication process. It typically lists the available options and provides a button to send the code.
VerifyCode.cshtml provides a form for users to enter the verification code they received. It is part of the multi-factor authentication process to verify the user's identity.
ExternalLoginsListPartial.cshtml This partial view displays a list of external login providers (e.g., Google, Facebook) that users can use to log in or link to their account. It is often included in other views like the login or register views.
ConfirmEmail.cshtml confirms that the user's email address has been successfully verified. It usually thanks the user and provides further instructions or a link to log in.
ExternalLoginConfirmation.cshtml This view is shown to users who are logging in with an external login provider for the first time. It asks for any additional information required to complete the registration process (e.g., username, additional profile details).
ExternalLoginFailure.cshtml informs the user that the external login attempt has failed. It typically provides information about what went wrong and offers options to try again or use a different login method.
ForgotPassword.cshtml provides a form for users to request a password reset link. It typically asks for the user's email address to send the reset instructions.
ForgotPasswordConfirmation.cshtml confirms that the password reset link has been sent to the user's email address. It usually thanks the user and provides further instructions.
Login.cshtml This view provides a form for users to log in to their account. It typically includes fields for the username/email and password, and may include options for remembering the user or links to reset the password or register.
Register.cshtml This view provides a form for users to create a new account. It typically includes fields for entering a username, email address, password, and confirming the password, along with any other required registration information.