mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 18:51:18 +01:00
22 lines
1.1 KiB
Plaintext
22 lines
1.1 KiB
Plaintext
|
@model (string CryptoCode, bool NBXSeedAvailable)
|
||
|
|
||
|
|
||
|
<div class="dropdown">
|
||
|
<button class="btn btn-primary dropdown-toggle" type="button" id="SendMenu" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||
|
Sign with...
|
||
|
</button>
|
||
|
<div class="dropdown-menu" aria-labelledby="SendMenu">
|
||
|
<button name="command" type="submit" class="dropdown-item" value="ledger">... your Ledger Wallet device</button>
|
||
|
<button name="command" type="submit" class="dropdown-item" value="seed">... an HD private key or mnemonic seed</button>
|
||
|
<button name="command" type="submit" class="dropdown-item" value="analyze-psbt">... a wallet supporting PSBT</button>
|
||
|
@if (Model.CryptoCode == "BTC")
|
||
|
{
|
||
|
<button name="command" type="submit" class="dropdown-item" value="vault">... the vault (preview)</button>
|
||
|
}
|
||
|
@if (Model.NBXSeedAvailable)
|
||
|
{
|
||
|
<button id="spendWithNBxplorer" name="command" type="submit" class="dropdown-item" value="nbx-seed">... the seed saved in NBXplorer</button>
|
||
|
}
|
||
|
</div>
|
||
|
</div>
|