-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwithdrawals.html
40 lines (40 loc) · 1.22 KB
/
withdrawals.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<title>余额提现</title>
<link rel="stylesheet" href="css/index.css" />
<link rel="stylesheet" href="css/withdrawals.css" />
<script src="js/jquery.min.js"></script>
</head>
<body>
<!--nav 可复用-->
<div class="nav">
<p onclick="javascript:history.back(-1);"><img src="images/箭头2.png" alt="" /></p>
<p>余额提现</p>
</div>
<!--提现-->
<div class="withdrawals">
<form action="">
<div class="withdrawals_line1">
<p>可提现余额:<span>¥4039.57</span></p>
</div>
<div class="withdrawals_line1">
<label for="import">¥</label>
<input type="text" id="import" placeholder="请输入提现金额"/>
</div>
<div class="withdrawals_line1">
<p>请选择提现账户</p>
</div>
<div class="withdrawals_line2">
<img src="images/weixin.png" alt="" />
<p>微信钱包</p>
<p>推荐安装微信5.0及以上版本的使用</p>
</div>
<p><img src="images/warning.png" alt="" />预计24小时内到账</p>
<button>确定</button>
</form>
</div>
</body>
</html>