Subversion Repositories SmartDukaan

Rev

Rev 27385 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<style>
.row{
        margin:0 auto;
}
.modal-content{
                background : white;
        }
        .modelHeaderCustom{
                font-size:14px;
                font-weight:bold;
        }
        .border-highlight{
                border : 3px solid red;
        }
        hr{
                background-color:#007aff;
                border:none;
                height:1px;
                background:#007aff;
        }
        .control-label {
                margin-top: 0;
        margin-bottom: 0;
        padding-top: 7px;
        font-weight:bold;
        font-size:14px;
        }
        .form-group{
                border-bottom: 1px solid #eff2f7;
        padding-bottom: 15px;
        margin-bottom: 15px;
        }

.right {
        float: right;
}

.form-control {
        color: black;
}

</style>

<script type="text/javascript">
        $('input[name="receiveDateTime"]').daterangepicker(getSingleDatePicker());
</script>

<section class="wrapper">
        <div class="row">
                <div class="col-lg-12">
                        <h3 class="page-header"><i class="icon_document_alt"></i>RECHARGE</h3>
                        <ol class="breadcrumb">
                                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
                                <li><i class="icon_document_alt"></i>PROVIDER WALLET ADD MONEY</li>
                        </ol>
                </div>
        </div>
        
        <div class = "row" style="background:white;background-color:white;padding:10px;">
                <h4 class="modelHeaderCustom" style="font-size:22px;padding-bottom:2%">Recharge Provider Wallet Add Money Information</h4>
                <div class="row">
                        <div class="col-lg-2 form-group">
                                <select class="form-control input-sm" id = "rechargeProvider" name = "rechargeProvider" placeholder="Recharge Provider Name">
                                        <option value="" disabled selected>Provider Name</option>
                                        #foreach($rechargeProvider in $rechargeProviders)
                                                <option value="$rechargeProvider.getId()">$rechargeProvider.getName()</option>
                                        #end
                                </select>
                        </div>
                        <div class="col-lg-1 form-group">
                                <p class="bold-details">Amount</p>
                        </div>
                        <div class="col-lg-2 form-group">
                                <input placeholder = "Amount" id="amount" name="amount" type="number" value="0" class="form-control phone input-sm">
                        </div>
                        <div class="col-lg-2 form-group">
                                <input placeholder = "Receive Date Time" id="receiveDateTime" name="receiveDateTime" type="text" value="" class="form-control input-sm">
                        </div>
                        <div class="col-lg-2">
                                <button class="btn btn-primary" type="button" onclick="addMoneyToRechargeProviderWallet()" style="width:100%;border-radius:0px;">Add Money</button>
                        </div>
                        
                </div>
        </div>
</section>