diff options
Diffstat (limited to 'src/transfer.html')
-rw-r--r-- | src/transfer.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/transfer.html b/src/transfer.html new file mode 100644 index 0000000..920c779 --- /dev/null +++ b/src/transfer.html @@ -0,0 +1,48 @@ +<!DOCTYPE html> + <head> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <link rel="stylesheet" href="main.css"> + <script src="main.js" defer></script> + </head> + <body> + <header> + <a href="/user.html"> + <center class="button navbutton">USER</center> + </a> + <a href="/transfer.html"> + <center class="button navbutton">TRANSFER</center> + </a> + <a href="#" onclick="logout()"> + <center class="button navbutton">LOGOUT</center> + </a> + </header> + <div id="page"> + <center> + <h2>TRANSFER</h2> + </center> + <hr> + <div id="content"> + <form action="javascript:transfer_form()" class="formbox"> + <label for="to_id">RECIPIENT ID</label> + <input type="text" id="to_id" minlength="4" maxlength="4" pattern="[0123456789abcedfABCDEF]{4}" required> + <label for="color">COLOR</label> + <select class="button" required> + <option>WHITE</option> + <option>RED</option> + <option>GREEN</option> + <option>BLUE</option> + <option>YELLOW</option> + </select> + <label for="amount">AMOUNT</label> + <input type="number" id="amount" required> + <input type="submit" class="button formbutton" value="SEND"> + </form> + </div> + </div> + <footer> + <center> + <p>POKO</p> + </center> + </footer> + </body> +</html>
\ No newline at end of file |