<aside>
💡 General Knowledge for editing ASP.NET Core MVC code, you can always refer to the URL to know which file you should edit. For example, if the URL format is host.com/account/login
, to edit the interface or front end or html code of the page, you can open /**Views**/Account/Login.cshtml
and proceed to edit the page. To edit backend or the functioning part, you can open /**Controllers**/AccountController.cs
and edit the controller.
</aside>
You can do the following to edit the footer:
/Views/Shared/_FooterBeforeLogin.cshtml
with Visual StudioPlease do the following:
Prepare your logo in .ico format (You can convert your image to ico format on this website: https://convertio.co/jpg-ico/)
Rename your file to favicon.ico and replace the existing favicon.ico file in wwwroot
Please do the following:
/Views/Shared/_Layout.cshtml
, edit the meta tags value within the <head>/Views/Shared/_LayoutAfterLogin.cshtml
, edit the meta tags value within the <head><aside> 💡 For other code editing information, please read FAQ > Editing the Code section
</aside>