-
Notifications
You must be signed in to change notification settings - Fork 517
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
@layout SettingsLayout | ||
@page "/admin/settings/error/" | ||
@inject HttpClient _http | ||
@inject IToaster _toaster | ||
@inject IJSRuntime _jsruntime | ||
@inject IStringLocalizer<Resource> _localizer | ||
|
||
<PageTitle Title="@_localizer["Error Page"]" /> | ||
|
||
<h1 class="section-title">@_localizer["Error Page"]</h1> | ||
|
||
<div class="section-content"> | ||
<div class="form-item"> | ||
<label class="form-label">@_localizer["title"]</label> | ||
<input type="text" class="form-control" name="title" /> | ||
</div> | ||
<div class="form-item"> | ||
<label class="form-label">@_localizer["description"]</label> | ||
<textarea class="form-control" cols="30" rows="4" name="description"></textarea> | ||
</div> | ||
<div class="app-editor-content bf-editor mb-3"> | ||
<PostEditorComponent Content="" /> | ||
</div> | ||
<div class="form-item"> | ||
<button type="button" class="btn btn-blogifier px-5">@_localizer["save"]</button> | ||
</div> | ||
</div> | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters