Minor UI updates (#4530)

* Minor UI updates

* Lockout page fixes

Fix duplicate headline and model null-check
This commit is contained in:
d11n
2023-01-19 10:08:34 +01:00
committed by GitHub
parent a9ad0fde9e
commit b577c0adb7
3 changed files with 44 additions and 45 deletions

View File

@@ -15,7 +15,8 @@
@if (Env.NetworkType != NBitcoin.ChainName.Mainnet)
{
var type = Env.NetworkType.ToString();
<small class="badge bg-warning rounded-pill ms-1 ms-sm-0" title="@type">@type.Replace("Testnet", "TN").Replace("Regtest", "RT")</small>
var displayType = type.Replace("Testnet", "TN").Replace("Regtest", "RT").Replace("Signet", "SN");
<small class="badge bg-warning rounded-pill ms-1 ms-sm-0" title="@type">@displayType</small>
}
}
private static string StoreName(string title)
@@ -38,7 +39,7 @@ else
}
<div id="StoreSelector">
@if (Model.Options.Count > 0)
@if (Model.Options.Any())
{
<div id="StoreSelectorDropdown" class="dropdown only-for-js">
<button id="StoreSelectorToggle" class="btn btn-secondary dropdown-toggle rounded-pill px-3 @(Model.CurrentStoreId == null ? "empty-state" : "")" type="button" data-bs-toggle="dropdown" aria-expanded="false">
@@ -74,6 +75,6 @@ else
}
else if (SignInManager.IsSignedIn(User))
{
<a asp-controller="UIUserStores" asp-action="CreateStore" class="btn btn-primary w-100 rounded-pill" id="StoreSelectorCreate">Create Store</a>
<a asp-controller="UIUserStores" asp-action="CreateStore" class="btn btn-primary w-100 rounded-pill text-nowrap" id="StoreSelectorCreate">Create Store</a>
}
</div>

View File

@@ -5,23 +5,15 @@
Layout = "_LayoutSignedOut";
}
<div class="row">
<div class="col-lg-12 section-heading">
<h2>@ViewData["Title"]</h2>
<hr class="primary">
</div>
<div class="col-lg-12 lead">
@if (DateTimeOffset.MaxValue - Model.Value < TimeSpan.FromSeconds(1))
{
<p>Your account has been disabled. Please contact server administrator.</p>
}
else if(Model is null)
{
<p>This account has been locked out because of multiple invalid login attempts. Please try again later.</p>
}
else
{
<p>This account has been locked out. Please try again <span data-timeago-unixms="@Model.Value.ToUnixTimeMilliseconds()">@Model.Value.ToTimeAgo()</span>.</p>
}
</div>
</div>
@if (Model is null)
{
<p class="mb-0">This account has been locked out because of multiple invalid login attempts. Please try again later.</p>
}
else if (DateTimeOffset.MaxValue - Model.Value < TimeSpan.FromSeconds(1))
{
<p class="mb-0">Your account has been disabled. Please contact server administrator.</p>
}
else
{
<p class="mb-0">This account has been locked out. Please try again @Model.Value.ToBrowserDate(ViewsRazor.DateDisplayFormat.Relative).</p>
}

View File

@@ -147,19 +147,19 @@
<div class="col col-12 col-md-6 col-lg-12 col-xl-6 col-xxl-4 mb-4">
<div class="card h-100" id="@plugin.Identifier">
<div class="card-body">
<div class="d-flex align-items-baseline justify-content-between gap-2">
<h4 class="card-title" data-bs-toggle="tooltip" title="@plugin.Identifier">@plugin.Name</h4>
<div class="d-flex flex-wrap align-items-baseline justify-content-between gap-2 mb-3">
<h4 class="card-title mb-0" data-bs-toggle="tooltip" title="@plugin.Identifier">@plugin.Name</h4>
@if (!string.IsNullOrEmpty(downloadInfo?.Author))
{
<span class="text-muted">
<span class="text-muted text-nowrap">
by
<a href="@downloadInfo.AuthorLink" rel="noreferrer noopener" target="_blank">
<span>@downloadInfo.Author</span>
@downloadInfo.Author
</a>
</span>
}
</div>
<div class="d-flex flex-wrap align-items-center mb-2">
<div class="d-flex flex-wrap align-items-center mb-2 gap-3">
<h5 class="text-muted d-flex align-items-center mt-1 gap-3">
@plugin.Version
@if (updateAvailable && x != null)
@@ -172,8 +172,8 @@
@if (updateAvailable)
{
<span class="nav version-switch mt-n1" role="tablist">
<a data-bs-toggle="tab" href="#@tabId-current" class="nav-link px-3 small text-info show active">Show current version</a>
<a data-bs-toggle="tab" href="#@tabId-update" class="nav-link px-3 small text-info">Show update information</a>
<a data-bs-toggle="tab" href="#@tabId-current" class="nav-link text-info p-0 show active">Show current info</a>
<a data-bs-toggle="tab" href="#@tabId-update" class="nav-link text-info p-0">Show update info</a>
</span>
}
</div>
@@ -183,15 +183,17 @@
<p class="card-text">@plugin.Description</p>
@if (plugin.Dependencies.Any())
{
<h5 class="text-muted">Dependencies</h5>
<h6 class="text-muted fw-semibold">Dependencies</h6>
<ul class="list-group list-group-flush">
@foreach (var dependency in plugin.Dependencies)
{
<li class="list-group-item p-2">
<li class="list-group-item p-2 d-inline-flex align-items-center gap-2">
@dependency
@if (!DependencyMet(dependency))
{
<span title="Dependency not met." data-bs-toggle="tooltip" class="fa fa-warning text-danger"></span>
<span title="Dependency not met." data-bs-toggle="tooltip" class="text-danger">
<vc:icon symbol="warning" />
</span>
}
</li>
}
@@ -205,15 +207,17 @@
<p class="card-text">@x.Description</p>
@if (x.Dependencies.Any())
{
<h5 class="text-muted">Dependencies</h5>
<h6 class="text-muted fw-semibold">Dependencies</h6>
<ul class="list-group list-group-flush">
@foreach (var dependency in x.Dependencies)
{
<li class="list-group-item p-2">
<li class="list-group-item p-2 d-inline-flex align-items-center gap-2">
@dependency
@if (!DependencyMet(dependency))
{
<span title="Dependency not met." data-bs-toggle="tooltip" class="fa fa-warning text-danger"></span>
<span title="Dependency not met." data-bs-toggle="tooltip" class="text-danger">
<vc:icon symbol="warning" />
</span>
}
</li>
}
@@ -224,7 +228,7 @@
@if (plugin != null)
{
<h5 class="text-muted mt-4">Resources</h5>
<h6 class="text-muted fw-semibold mt-4">Resources</h6>
<ul class="list-group list-group-flush list-unstyled">
@if (downloadInfo?.Source is not null)
{
@@ -308,14 +312,14 @@
<div class="col col-12 col-md-6 col-lg-12 col-xl-6 col-xxl-4 mb-4">
<div class="card h-100" id="@plugin.Identifier">
<div class="card-body">
<div class="d-flex align-items-baseline justify-content-between gap-2">
<h4 class="card-title" data-bs-toggle="tooltip" title="@plugin.Identifier">@plugin.Name</h4>
<div class="d-flex flex-wrap align-items-baseline justify-content-between gap-2 mb-3">
<h4 class="card-title mb-0" data-bs-toggle="tooltip" title="@plugin.Identifier">@plugin.Name</h4>
@if (!string.IsNullOrEmpty(plugin.Author))
{
<span class="text-muted">
<span class="text-muted text-nowrap">
by
<a href="@plugin.AuthorLink" rel="noreferrer noopener" target="_blank">
<span>@plugin.Author</span>
@plugin.Author
</a>
</span>
}
@@ -334,15 +338,17 @@
<p class="card-text">@plugin.Description</p>
@if (plugin.Dependencies?.Any() is true)
{
<h5 class="text-muted">Dependencies</h5>
<h6 class="text-muted fw-semibold">Dependencies</h6>
<ul class="list-group list-group-flush">
@foreach (var dependency in plugin.Dependencies)
{
<li class="list-group-item p-2">
<li class="list-group-item p-2 d-inline-flex align-items-center gap-2">
@dependency
@if (!DependencyMet(dependency))
{
<span title="Dependency not met." data-bs-toggle="tooltip" class="fa fa-warning text-danger"></span>
<span title="Dependency not met." data-bs-toggle="tooltip" class="text-danger">
<vc:icon symbol="warning" />
</span>
}
</li>
}
@@ -351,7 +357,7 @@
@if (plugin != null)
{
<h5 class="text-muted mt-4">Resources</h5>
<h6 class="text-muted fw-semibold mt-4">Resources</h6>
<ul class="list-group list-group-flush list-unstyled">
@if (plugin.Source is not null)
{