Subversion Repositories SmartDukaan

Rev

Rev 23884 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
23629 ashik.ali 1
<style>
2
.row{
3
	margin:0 auto;
4
}
5
.modal-content{
6
		background : white;
7
	}
8
	.modelHeaderCustom{
9
		font-size:14px;
10
		font-weight:bold;
11
	}
12
	.border-highlight{
13
		border : 3px solid red;
14
	}
15
	hr{
16
		background-color:#007aff;
17
		border:none;
18
		height:1px;
19
		background:#007aff;
20
	}
21
	.control-label {
22
		margin-top: 0;
23
    	margin-bottom: 0;
24
    	padding-top: 7px;
25
    	font-weight:bold;
26
    	font-size:14px;
27
	}
28
	.form-group{
29
		border-bottom: 1px solid #eff2f7;
30
    	padding-bottom: 15px;
31
    	margin-bottom: 15px;
32
	}
33
	.right{
34
		float:right;
35
	}
36
	.form-control{
37
		color:black;
38
		text-transform:uppercase;
39
	}
40
 
41
</style>
42
 
43
<script type="text/javascript">
44
	$('input[name="receiveDateTime"]').daterangepicker({
45
    		"showDropdowns": true,
46
    		"singleDatePicker": true,
47
    		"timePicker": true,
48
    		"timePicker24Hour": true,
49
    		"timePickerSeconds": true,
50
 
51
    		"autoUpdateInput": false,
52
    		locale: {
53
    			cancelLabel: 'Clear',
54
    			format: 'DD/MM/YYYY HH:mm:ss'
55
  			}
56
	    });
57
 
58
    $('input[name="receiveDateTime"]').on('apply.daterangepicker', function(ev, picker) {
59
  		$(this).val(picker.startDate.format('DD/MM/YYYY HH:mm:ss'));
60
	});
61
 
62
	$('input[name="receiveDateTime"]').on('cancel.daterangepicker', function(ev, picker) {
63
  		$(this).val('');
64
	});
65
</script>
66
 
67
<section class="wrapper">
68
	<div class="row">
69
		<div class="col-lg-12">
70
			<h3 class="page-header"><i class="icon_document_alt"></i>RECHARGE</h3>
71
			<ol class="breadcrumb">
72
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
73
				<li><i class="icon_document_alt"></i>PROVIDER WALLET ADD MONEY</li>
74
			</ol>
75
		</div>
76
	</div>
77
 
78
	<div class = "row" style="background:white;background-color:white;padding:10px;">
79
		<h4 class="modelHeaderCustom" style="font-size:22px;padding-bottom:2%">Recharge Provider Wallet Add Money Information</h4>
80
		<div class="row">
81
			<div class="col-lg-2 form-group">
82
				<select class="form-control input-sm" id = "rechargeProvider" name = "rechargeProvider" placeholder="Recharge Provider Name">
83
					<option value="" disabled selected>Provider Name</option>
84
					#foreach($rechargeProvider in $rechargeProviders)
85
						<option value="$rechargeProvider.getId()">$rechargeProvider.getName()</option>
86
					#end
87
 				</select>
88
			</div>
89
			<div class="col-lg-1 form-group">
90
				<p class="bold-details">Amount</p>
91
			</div>
92
			<div class="col-lg-2 form-group">
93
				<input placeholder = "Amount" id="amount" name="amount" type="number" value="0" class="form-control phone input-sm">
94
			</div>
95
			<div class="col-lg-2 form-group">
96
				<input placeholder = "Receive Date Time" id="receiveDateTime" name="receiveDateTime" type="text" value="" class="form-control input-sm">
97
			</div>
98
			<div class="col-lg-2">
99
				<button class="btn btn-primary" type="button" onclick="addMoneyToRechargeProviderWallet()" style="width:100%;border-radius:0px;">Add Money</button>
100
			</div>
101
 
102
		</div>
103
	</div>
104
</section>