-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransfer.html
25 lines (25 loc) · 1.23 KB
/
transfer.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title>TradeOn</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body class="page2">
<div id="main-wrapper" style="width: 70%; margin-left: 15%;">
<center><h2 style="margin-top: 10px;"></h2></center>
<form action="form.php" method="post">
<div class="inner_container" style="width: 80%;">
<label><b> Transfer Power(Units)</b><br></label>
<input type="text" style="width: 100%;" placeholder="Enter the number of units you want to transfer" name="units" required>
<label><b> Address</b><br></label>
<input type="text" style="width: 100%;" placeholder="Enter the address you want to transfer to" name="address" required>
<center><a href="form.php">
<button type="button" class="back_btn" style="margin-bottom: 30px; margin-top: 20px;">Transfer</button></a></center>
</div>
</form>
</div>
</body>
</html>