|
|
|
@@ -31,17 +31,17 @@ |
|
|
|
<div class="row no-gutters w-100">
|
|
|
|
<div class="col-6" style="padding-right:0.5em">
|
|
|
|
<MatStringField Class="w-100" Label="@I18n["Firstname"]" Outlined="true" type="text" @bind-Value="@Account.Firstname" Required="true"
|
|
|
|
OnKeyDown="@InputCursorHandler.OnKeyDownHandlerAsync"></MatStringField>
|
|
|
|
OnKeyDown="@InputCursorHandler.OnKeyDownHandlerAsync" maxlength="50"></MatStringField>
|
|
|
|
</div>
|
|
|
|
<div class="col-6" style="padding-left:0.5em">
|
|
|
|
<MatStringField Class="w-100" Label="@I18n["Lastname"]" Outlined="true" type="text" @bind-Value="@Account.Lastname" Required="true"
|
|
|
|
OnKeyDown="@InputCursorHandler.OnKeyDownHandlerAsync"></MatStringField>
|
|
|
|
OnKeyDown="@InputCursorHandler.OnKeyDownHandlerAsync" maxlength="50"></MatStringField>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row no-gutters align-items-center w-100">
|
|
|
|
<div class="col-12">
|
|
|
|
<MatStringField Class="w-100" Label="@I18n["Address"]" Outlined="true" type="text" @bind-Value="@Account.Address"
|
|
|
|
OnKeyDown="@InputCursorHandler.OnKeyDownHandlerAsync"></MatStringField>
|
|
|
|
OnKeyDown="@InputCursorHandler.OnKeyDownHandlerAsync" maxlength="50"></MatStringField>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row no-gutters align-items-center w-100">
|
|
|
|
@@ -60,20 +60,20 @@ |
|
|
|
</div>
|
|
|
|
<div class="row no-gutters align-items-center w-100">
|
|
|
|
<div class="col-12">
|
|
|
|
<MatStringField Class="w-100" Label="@I18n["Phone"]" Outlined="true" type="text" @bind-Value="@Account.Phone" Required="true"
|
|
|
|
OnKeyDown="@InputCursorHandler.OnKeyDownHandlerAsync"></MatStringField>
|
|
|
|
<MatTextField Class="w-100" Label="@I18n["Phone"]" Outlined="true" type="text" @bind-Value="@Account.Phone" Required="true"
|
|
|
|
OnKeyDown="@InputCursorHandler.OnConstrainedFieldKeyDownHandlerAsync" maxlength="20" pattern="^([0-9]*)$"></MatTextField>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row no-gutters align-items-center w-100">
|
|
|
|
<div class="col-12">
|
|
|
|
<MatStringField Class="w-100" Label="@I18n["Mobile"]" Outlined="true" type="text" @bind-Value="@Account.Mobile"
|
|
|
|
OnKeyDown="@InputCursorHandler.OnKeyDownHandlerAsync"></MatStringField>
|
|
|
|
<MatTextField Class="w-100" Label="@I18n["Mobile"]" Outlined="true" type="text" @bind-Value="@Account.Mobile"
|
|
|
|
OnKeyDown="@InputCursorHandler.OnConstrainedFieldKeyDownHandlerAsync" maxlength="20" pattern="^([0-9]*)$"></MatTextField>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row no-gutters align-items-center w-100">
|
|
|
|
<div class="col-12">
|
|
|
|
<MatStringField Class="w-100" Label="@I18n["Mail"]" Outlined="true" type="text" @bind-Value="@Account.Email"
|
|
|
|
OnKeyDown="@InputCursorHandler.OnKeyDownHandlerAsync"></MatStringField>
|
|
|
|
<MatStringField Class="w-100" Label="@I18n["Mail"]" Outlined="true" type="email" @bind-Value="@Account.Email"
|
|
|
|
OnKeyDown="@InputCursorHandler.OnKeyDownHandlerAsync" maxlength="50"></MatStringField>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|