-
Notifications
You must be signed in to change notification settings - Fork 0
/
allocation-confirmation.html
78 lines (69 loc) · 2.45 KB
/
allocation-confirmation.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- BOOTSTRAP -->
<link rel="stylesheet" href="./assets/css/bootstrap-utilities.min.css" />
<link rel="stylesheet" href="./assets/css/bootstrap-gird.min.css" />
<!-- CUSTOM STYLESHEETS -->
<link rel="stylesheet" href="./assets/css/styles.css" />
<link rel="stylesheet" href="./assets/css/utilities.css" />
<title>Confirm</title>
</head>
<body>
<div id="dark-overlay"></div>
<div id="dark-overlay-dropdown"></div>
<section id="allocation-confirm">
<div class="custom-modal small-width">
<div class="close">
<img src="./assets/images/close.svg" alt="close" />
</div>
<div class="modal-head">
<div class="img">
<img src="./assets/images/bank_logo.svg" alt="logo" />
</div>
<div class="text">
<h4 class="title fs-575-16">
HDFC Banking And Financial Services Growth Direct Plan
</h4>
<h4 class="text-light-2 fs-575-14">Mutual Fund</h4>
</div>
</div>
<div class="modal-body">
<div class="text-fields">
<div class="custom-form-control">
<h4 class="text-light-2">Allocation</h4>
<input class="custom-input active" type="text" value="30%" />
</div>
<div class="custom-form-control">
<h4 class="text-light-2">Amount</h4>
<input class="custom-input" type="text" value="₹9,000" />
</div>
</div>
<div class="slidecontainer">
<div class="text-light-2 fs-575-12 guide">Slide left or right</div>
<input
type="range"
min="1"
max="100"
value="50"
class="slider"
id="myRange"
/>
</div>
<div class="p-container"></div>
<div class="btns">
<button class="btn btn-outlined-dark">Cancel</button>
<div class="bottom-btn-sm">
<button class="btn btn-bg-primary fs-575-16">Confirm</button>
</div>
</div>
</div>
</div>
</section>
<script src="./assets/js/jquery.min.js"></script>
<script defer src="./assets/js/common.js"></script>
</body>
</html>