Untitled
unknown
plain_text
2 years ago
3.0 kB
4
Indexable
Never
<!DOCTYPE html> <html xmlns:th="http://www.thymeleaf.org" lang="en"> <head> <title>Forward Order</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script> <link rel="stylesheet" type="text/css" href="basic.css"> </head> <body> <!-- NAVBAR --> <div class="navbar"> <div class ="nav-left"> <div class ="nav-logo"><a href="/">BULL.EX</a></div> <form action="/orders" method="get"><button type="submit">Spot Trade</button></form> <a th:href="@{/newforwardorder}"><button>Forward Trade</button></a> <a th:href="@{/activeforwardtradesdashboard}"><button>Active Forward Trades</button></a> <a th:href="@{/pendingforwardtradesdashboard}"><button>Pending Forward Trades</button></a> </div> <div class ="nav-right"> <form action="/transferfunds" method="get"><button type="submit"> <span class="glyphicon glyphicon-user"></span> Wallet </button></form> <form action="/logout" method="get"><button type="submit"> <span class="glyphicon glyphicon-log-out"></span> Logout </button></form> </div> </div> <!-- NAVBAR --> <!-- CONTENT --> <div class="index-splash"> <h1>PLACE FORWARD ORDER</h1> <div class = "form"> <!-- th:object="${forwardOrder}" --> <form method="post" th:action="@{newforwardorder}"> <!--<label for="fromCurrency">From Currency:</label>--> <select id="fromCurrency" name="fromCurrency"> <option disabled selected>From Currency</option> <option th:each="currency : ${availableCurrency}" th:value="${currency.currencyId}" th:text="${currency.currencyCode}"></option> </select> <br> <!--<label for="toCurrency">To Currency:</label>--> <select id="toCurrency" name="toCurrency"> <option disabled selected>To Currency</option> <option th:each="currency : ${allCurrency}" th:value="${currency.currencyId}" th:text="${currency.currencyCode}"></option> </select> <br> <!-- <label for="fromCurrencyPrice">From Currency Price:</label> --> <input type="number" id="fromCurrencyPrice" name="fromCurrencyPrice" placeholder="From Currency Price"> <br> <!-- <label for="toCurrencyQuantity">To Currency Quantity:</label> --> <input type="number" id="toCurrencyQuantity" name="toCurrencyQuantity" placeholder="To Currency Quantity"> <br> <div class ="exp-date">Set Transaction Date:</div> <!-- <label for="transactionDate">Transaction Date:</label> --> <input type="date" id="transactionDate" name="transactionDate"> <br> <input class="submit-btn" type="submit" value="Submit"> </form> </div> </div> <!-- CONTENT --> </body> </html>