mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-25 18:04:23 +01:00
19 lines
507 B
Plaintext
19 lines
507 B
Plaintext
@model PostRedirectViewModel
|
|
@{
|
|
Layout = null;
|
|
}
|
|
|
|
<html>
|
|
<head></head>
|
|
<body>
|
|
<form method="post" id="postform" asp-action="@Model.AspAction" asp-controller="@Model.AspController" asp-route-walletId="@this.Context.GetRouteValue("walletId").ToString()">
|
|
@foreach(var o in Model.Parameters) {
|
|
<input type="hidden" name="@o.Key" value="@o.Value" />
|
|
}
|
|
</form>
|
|
<script type="text/javascript">
|
|
document.forms.item(0).submit();
|
|
</script>
|
|
</body>
|
|
</html>
|