mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-24 20:48:24 +00:00
15 lines
671 B
Plaintext
15 lines
671 B
Plaintext
@page "/uploads/new"
|
|
@inherits BasicComponent
|
|
|
|
<PageTitle>Create upload</PageTitle>
|
|
<RadzenContent Container="main">
|
|
<h3>Select uploader</h3>
|
|
<CardList Data="@UploaderCards" @bind-SelectedItems="@SelectedUploaderIds"/>
|
|
<div class="row">
|
|
<div class="col-md-12 text-right">
|
|
<RadzenButton Click="@(args => DialogService.Close())" ButtonStyle="ButtonStyle.Secondary" Text="Cancel" Style="width: 120px" Class="mr-1"/>
|
|
<RadzenButton Click="@(async args => await OnSavePressed())" Disabled="@(SelectedUploader == null || !SelectedUploader.IsConfigured)" Text="Upload" Style="width: 120px"/>
|
|
</div>
|
|
</div>
|
|
</RadzenContent>
|