Subversion Repositories SmartDukaan

Rev

Rev 27385 | 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
 
30601 amit.gupta 34
.right {
35
	float: right;
36
}
37
 
38
.form-control {
39
	color: black;
40
}
41
 
23629 ashik.ali 42
</style>
43
 
44
<script type="text/javascript">
30601 amit.gupta 45
	$('input[name="receiveDateTime"]').daterangepicker(getSingleDatePicker());
23629 ashik.ali 46
</script>
47
 
48
<section class="wrapper">
49
	<div class="row">
50
		<div class="col-lg-12">
51
			<h3 class="page-header"><i class="icon_document_alt"></i>RECHARGE</h3>
52
			<ol class="breadcrumb">
53
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
54
				<li><i class="icon_document_alt"></i>PROVIDER WALLET ADD MONEY</li>
55
			</ol>
56
		</div>
57
	</div>
58
 
59
	<div class = "row" style="background:white;background-color:white;padding:10px;">
60
		<h4 class="modelHeaderCustom" style="font-size:22px;padding-bottom:2%">Recharge Provider Wallet Add Money Information</h4>
61
		<div class="row">
62
			<div class="col-lg-2 form-group">
63
				<select class="form-control input-sm" id = "rechargeProvider" name = "rechargeProvider" placeholder="Recharge Provider Name">
64
					<option value="" disabled selected>Provider Name</option>
65
					#foreach($rechargeProvider in $rechargeProviders)
66
						<option value="$rechargeProvider.getId()">$rechargeProvider.getName()</option>
67
					#end
68
 				</select>
69
			</div>
70
			<div class="col-lg-1 form-group">
71
				<p class="bold-details">Amount</p>
72
			</div>
73
			<div class="col-lg-2 form-group">
74
				<input placeholder = "Amount" id="amount" name="amount" type="number" value="0" class="form-control phone input-sm">
75
			</div>
76
			<div class="col-lg-2 form-group">
77
				<input placeholder = "Receive Date Time" id="receiveDateTime" name="receiveDateTime" type="text" value="" class="form-control input-sm">
78
			</div>
79
			<div class="col-lg-2">
80
				<button class="btn btn-primary" type="button" onclick="addMoneyToRechargeProviderWallet()" style="width:100%;border-radius:0px;">Add Money</button>
81
			</div>
82
 
83
		</div>
84
	</div>
85
</section>