WIP: Load DataProtectionTokenProviderOptions from a row in a Database. #6

Draft
Kocoder wants to merge 6 commits from kh-configuration-from-ef into main
23 changed files with 433 additions and 64 deletions
Showing only changes of commit f47c8ce1cb - Show all commits

View File

@@ -13,7 +13,14 @@
}
else
{
<Microsoft.AspNetCore.Components.Forms.InputNumber @bind-Value="_AdminSetting.TokenLifetime" />
<div class="container">
<div class="row mb-1 align-items-center">
<Label Class="col-sm-3" For="tokenLifetime" HelpText="Gib die Lebenszeit von Tokens in Tagen an" ResourceKey="TokenLifetime">TokenLifetime: </Label>
<div class="col-sm-9">
<Microsoft.AspNetCore.Components.Forms.InputNumber @bind-Value="_AdminSetting.TokenLifetime" class="form-control" id="tokenLifetime" />
</div>
</div>
</div>
<button class="btn btn-primary" type="button" @onclick="Save">Save</button>
}