mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-24 04:28:29 +00:00
26 lines
939 B
Plaintext
26 lines
939 B
Plaintext
@page "/tokens/new"
|
|
@inherits BasicComponent
|
|
|
|
<PageTitle>Create token</PageTitle>
|
|
|
|
<form onsubmit="@OnSavePressed">
|
|
<div class="mb-4">
|
|
<h4>Image</h4>
|
|
<RadzenFileInput @bind-Value=@Model.FileData @bind-FileName=@Model.FileName @bind-FileSize=@Model.FileSize TValue="string" Class="w-100"/>
|
|
</div>
|
|
|
|
<div class="mb-4">
|
|
<h4>Name</h4>
|
|
<RadzenTextBox Placeholder="YING #668" MaxLength="50" @bind-Value="@Model.Name" Class="w-100"/>
|
|
</div>
|
|
|
|
<div class="mb-4">
|
|
<h4>Description</h4>
|
|
<RadzenTextArea Placeholder="YING, ecotype enterprises IP of Inkeverse and the avatar spokesperson for Inkeverse." MaxLength="250" @bind-Value="@Model.Description" Class="w-100"/>
|
|
</div>
|
|
|
|
<div style="display: flex; justify-content: end;">
|
|
<RadzenButton Click="@((args) => OnSavePressed())" Disabled="!ModelIsValid" Text="Save" Style="width: 120px"/>
|
|
</div>
|
|
</form>
|