mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 05:54:26 +01:00
14 lines
374 B
Plaintext
14 lines
374 B
Plaintext
@model (string ButtonClass, SubscriberData Subscriber)
|
|
|
|
<form method="post">
|
|
@if (Model.Subscriber.NextPlan.Renewable)
|
|
{
|
|
<button type="submit" name="command" value="pay" class="@Model.ButtonClass">Pay Now</button>
|
|
}
|
|
else
|
|
{
|
|
<button type="submit" name="command" value="migrate" class="@Model.ButtonClass">Upgrade</button>
|
|
}
|
|
</form>
|
|
|