Subversion Repositories SmartDukaan

Rev

Rev 23505 | Rev 23547 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
23505 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
.table-align-center{
41
	text-align:center;
42
}
43
 
44
</style>
45
 
46
<section class="wrapper">
47
	<div class="row">
48
		<div class="col-lg-12">
49
			<h3 class="page-header"><i class="icon_document_alt"></i>RECHARGE</h3>
50
			<ol class="breadcrumb">
51
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
52
				<li><i class="icon_document_alt"></i>CREATE</li>
53
			</ol>
54
		</div>
55
	</div>
56
	<form id="create-recharge-form">
57
		<div id="customer-details" style="background:white;background-color:white;padding:10px;">
58
			<h4 class="modelHeaderCustom" style="font-size:22px;">Recharge Information</h4>
59
			<div>
60
				<div class = "row">
61
					#if($operatorTypes)
62
						<div class="col-lg-2 form-group">
23528 ashik.ali 63
							<select class="form-control input-sm" id = "rechargeOperatorType" name = "rechargeOperatorType" placeholder="Operator Type">
23505 ashik.ali 64
								#foreach($operatorType in $operatorTypes)
65
									#if($operatorType == "PREPAID")
66
										<option value="$operatorType" selected>$operatorType</option>
67
									#else
68
										<option value="$operatorType">$operatorType</option>
69
									#end
70
								#end
71
		             		</select>
72
		             	</div>
73
					#end
74
					<div class="col-lg-2 form-group">
75
						<select class="form-control input-sm" id = "rechargeOperator" name = "rechargeOperator" placeholder="Recharge Operators">
76
							<option value="" disabled selected>Recharge Operators</option>
77
							#foreach($rechargeOperator in $rechargeOperators)
78
								<option value="$rechargeOperator.getId()">$rechargeOperator.getName()</option>
79
							#end
80
		             	</select>
81
					</div>
82
 
83
					<div class="col-lg-3 form-group">
84
					   	<input placeholder="Number" id="referenceNumber" name="referenceNumber" type="text" value="" class="form-control input-sm">
85
					</div>
86
					<div class="col-lg-2 form-group">
87
					   	<input placeholder="Amount" id="amount" name="amount" type="number" value="0" class="form-control input-sm">
88
					</div>
89
					<div class="col-lg-2" style="float:right;">
90
						<input class="btn btn-primary create-recharge-button" type="submit" style="width:100%;border-radius:0px;" value="Recharge">
91
					</div>
92
				</div>
93
			</div>
94
		</div>
95
 
96
	</form>
97
</section>
98
<script type="text/javascript" src="resources/js/create-recharge.js"></script>