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 | : 18.116.80.77
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 : generate.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">New Release Order</h4> </div> <div class="content"> <form action="{{ path('generate')}}" method="post" name="cargo"> <div class="form-group"> <label for="cargo">Cargo:</label> {% if cargoId is defined %} <select name="cargo" class="form-control" disabled> <option value="{{cargoId.id}}">{{cargoId.cargoname}}</option> </select> <input type="hidden" name="cargo" value="{{cargoId.id}}"> {% else %} <select name="cargo" id="cargo" class="form-control select2" required> <option value=""> Select Cargo </option> {% for item in cargo %} <option value="{{ item.id }}">{{ item.cargoname }}</option> {% endfor %} </select> {% endif %} </div> <div class="form-group"> <label for="quantity">Quantity: </label> <input type="text" name="quantity" id="quantity" class="form-control" required> </div> <div class="form-group"> <label for="customer">Customer: </label> <input type="text" name="customer" id="customer" class="form-control" required> </div> {# <div class="form-group"> <label for="depot">Depot:</label> <input type="text" name="depot" id="depot" class="form-control" required> </div> #} <div class="form-group"> <label for="depot">Depot</label> <select name="depot" id="depot" class="form-control select2"> <option value="">Select Depot</option> {% for item in depots %} <option value="{{ item.id }}">{{ item.name }}</option> {% endfor %} </select> </div> <div class="form-group"> <label for="bank">Bank:</label> <input type="text" name="bank" id="bank" class="form-control" required> </div> <div class="form-group"> <label for="date">Date:</label> <input type="text" name="date" id="datepicker" class="form-control"> </div> <input type="submit" name="submit" class="btn btn-default" value="Save Details"> </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