login.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!doctype html>
  2. <html class="w3-indigo">
  3. <head>
  4. <title>Trade | Login</title>
  5. <script src="jQuery.js"></script>
  6. <script src="script.js"></script>
  7. <link rel="stylesheet" href="w3.css">
  8. <link rel="stylesheet" href="style.css">
  9. <meta name="viewport" content="width=device-width,initial-scale=1">
  10. </head>
  11. <body class="w3-light-blue w3-border-white w3-border-left w3-border-right">
  12. <h3 class="w3-center w3-panel w3-lime">Trade</h3>
  13. <div class="w3-container">
  14. <div class="w3-container">
  15. BTC:
  16. <span class="w3-text-green">
  17. $btc_buy
  18. </span>
  19. ~
  20. <span class="w3-text-red">
  21. $btc_sell
  22. </span>
  23. </div>
  24. <div class="w3-container">
  25. BCH:
  26. <span class="w3-text-green">
  27. $bch_buy
  28. </span>
  29. ~
  30. <span class="w3-text-red">
  31. $bch_sell
  32. </span>
  33. </div>
  34. </div>
  35. <hr>
  36. <form action="/login" method="POST" class="w3-center w3-container">
  37. <label>Username:</label>
  38. <input placeholder="Your username" name="username">
  39. <br>
  40. <label>Password:</label>
  41. <input placeholder="Password here" type="password" name="password">
  42. <br>
  43. <input type="submit" value="Login" class="w3-btn w3-orange">
  44. </form>
  45. </body>
  46. </html>