Add proper help text to aliases field in default resource file for Site Settings. Set default value for new ShowLogin parameter in Login theme component.

This commit is contained in:
Shaun Walker 2021-10-17 13:27:12 -04:00
parent 3e9a4f2c1a
commit cf69f9e4c4
2 changed files with 2 additions and 2 deletions

View File

@ -169,7 +169,7 @@
<value>Enter the tenant for the site</value> <value>Enter the tenant for the site</value>
</data> </data>
<data name="Aliases.HelpText" xml:space="preserve"> <data name="Aliases.HelpText" xml:space="preserve">
<value>Enter the alias for the server</value> <value>The aliases for the site. An alias can be a domain name (www.site.com) or a virtual folder (ie. www.site.com/folder). If a site has multiple aliases they should be separated by commas.</value>
</data> </data>
<data name="AllowRegistration.HelpText" xml:space="preserve"> <data name="AllowRegistration.HelpText" xml:space="preserve">
<value>Do you want the users to be able to register for an account on the site</value> <value>Do you want the users to be able to register for an account on the site</value>

View File

@ -23,5 +23,5 @@
@code @code
{ {
[Parameter] [Parameter]
public bool ShowLogin { get; set; } public bool ShowLogin { get; set; } = true;
} }