Update Icons
This commit is contained in:
@@ -37,7 +37,7 @@
|
||||
<InputText DisplayName="Phone" class="form-control" @bind-Value="@EditFormObject.Phone"></InputText>
|
||||
</div>
|
||||
|
||||
<button type="button" class="btn btn-sm btn-primary" @onclick="SaveCustomerAsync">Speichern</button>
|
||||
<button type="button" class="btn btn-sm btn-primary" @onclick="SaveCustomerAsync"><i class="fas fa-save"></i> Speichern</button>
|
||||
<button type="button" class="btn btn-sm btn-secondary" @onclick="HideEditFormAsync">Abbrechen</button>
|
||||
}
|
||||
else
|
||||
|
||||
@@ -10,8 +10,8 @@
|
||||
|
||||
<h1>Rechnung #@Invoice.InvoiceId</h1>
|
||||
|
||||
<button type="button" class="btn btn-primary" @onclick="SaveInvoiceAsync">Speichern</button>
|
||||
<button type="button" class="btn btn-info" @onclick="GenerateInvoiceAsync">Generieren</button>
|
||||
<button type="button" class="btn btn-primary" @onclick="SaveInvoiceAsync"><i class="fas fa-save"></i> Speichern</button>
|
||||
<button type="button" class="btn btn-info" @onclick="GenerateInvoiceAsync"><i class="fas fa-file-pdf"></i> Generieren</button>
|
||||
|
||||
@if (!string.IsNullOrWhiteSpace(AlertMessage))
|
||||
{
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
|
||||
<h3>Einstellungen</h3>
|
||||
|
||||
<button type="button" class="btn btn-primary" @onclick="Save">Speichern</button>
|
||||
<button type="button" class="btn btn-primary" @onclick="Save"><i class="fas fa-save"></i> Speichern</button>
|
||||
|
||||
<hr />
|
||||
|
||||
@@ -72,3 +72,8 @@
|
||||
<label class="form-label">BIC</label>
|
||||
<InputText DisplayName="BIC" class="form-control" @bind-Value="@SettingsData.Instance.PaymentData.Bic"></InputText>
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<label class="form-label">Logo Pfad</label>
|
||||
<InputText class="form-control" @bind-Value="@SettingsData.Instance.Logo"></InputText>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user