Subversion Repositories SmartDukaan

Rev

Rev 23629 | Rev 23886 | Go to most recent revision | Details | Compare with Previous | 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,
23884 amit.gupta 47
    		"autoUpdateInput": true,
23629 ashik.ali 48
    		locale: {
49
    			cancelLabel: 'Clear',
23884 amit.gupta 50
    			format: 'DD/MM/YYYY'
23629 ashik.ali 51
  			}
52
	    });
53
</script>
54
 
55
<section class="wrapper">
56
	<div class="row">
57
		<div class="col-lg-12">
58
			<h3 class="page-header"><i class="icon_document_alt"></i>RECHARGE</h3>
59
			<ol class="breadcrumb">
60
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
61
				<li><i class="icon_document_alt"></i>PROVIDER WALLET ADD MONEY</li>
62
			</ol>
63
		</div>
64
	</div>
65
 
66
	<div class = "row" style="background:white;background-color:white;padding:10px;">
67
		<h4 class="modelHeaderCustom" style="font-size:22px;padding-bottom:2%">Recharge Provider Wallet Add Money Information</h4>
68
		<div class="row">
69
			<div class="col-lg-2 form-group">
70
				<select class="form-control input-sm" id = "rechargeProvider" name = "rechargeProvider" placeholder="Recharge Provider Name">
71
					<option value="" disabled selected>Provider Name</option>
72
					#foreach($rechargeProvider in $rechargeProviders)
73
						<option value="$rechargeProvider.getId()">$rechargeProvider.getName()</option>
74
					#end
75
 				</select>
76
			</div>
77
			<div class="col-lg-1 form-group">
78
				<p class="bold-details">Amount</p>
79
			</div>
80
			<div class="col-lg-2 form-group">
81
				<input placeholder = "Amount" id="amount" name="amount" type="number" value="0" class="form-control phone input-sm">
82
			</div>
83
			<div class="col-lg-2 form-group">
84
				<input placeholder = "Receive Date Time" id="receiveDateTime" name="receiveDateTime" type="text" value="" class="form-control input-sm">
85
			</div>
86
			<div class="col-lg-2">
87
				<button class="btn btn-primary" type="button" onclick="addMoneyToRechargeProviderWallet()" style="width:100%;border-radius:0px;">Add Money</button>
88
			</div>
89
 
90
		</div>
91
	</div>
92
</section>