✏️ 正在编辑: add_money.php
路径:
/home/llpreacharge/public_html/MLM/add_money.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<html> <head> <title>Add Money</title> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <!-- Admin CSS File Link --> <link rel="stylesheet" href="css/style2.css"> <link rel="stylesheet" href="css/mediaStyle.css"> <!-- Font Awesome Icone --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <style> .div1{ background:#f7f7f7; width:50%; height:500px; float:left; text-align:center; padding:10px; } .div1 table{ width:94%; text-align:center; font-size:19px; border-collapse:collapse; margin:10px; padding:2px 10px; } .div1 hr{ margin:5px 10px; padding:0 10px; } table th{ background:green; color:white; height:40px; border:solid white 1px; } table td{ background:white; color:green; height:40px; border:solid black 1px; } .div1 hr{width:94%;} .div1 input,select, textarea{ width:90%; height:45px; margin:5px 10px; padding:2px 10px; border-radius:5px; border:1px solid green; font-size:18px; } textarea{ height:100px; padding:5px 10px; } input[type=submit]{ background:green; color:white; font-size:30px; transition:1s; } input[type=submit]:hover{ background:white; color:green; border:1px solid green; cursor:pointer; transition:1s; } @media(max-width:768px) { .div1{ width:100%; height:auto; } .nav,.container{ height:auto; } } </style> </head> <body> <!--Header Divison--> <?php require'header.php'; ?> <!--Container Division--> <div class="container"> <?php include'menu.php'; ?> <div class="content"> <div class="head"> <div class="title"><p>Add Money:-</p></div> <div class="msg"><marquee>This Is Test Message</marquee></msg> </div><hr> <div class="data-content"> <form method="post"> <div class="div1"> <input type="number" name="amount" placeholder="Amount..."> <input type="date" name="date"> <select name="bank"> <option>--Select Bank--</option> <option>Bank1</option> <option>Bank2</option> <option>Bank3</option> </select> <select name="mode"> <option>--Select Mode--</option> <option>NEFT</option> <option>IMPS</option> <option>RTGS</option> </select> <input type="text" name="txn" placeholder="Txn No..."> <textarea name="msg" placeholder="Type Your Message Hear.."></textarea> <input type="submit" name="submit" value="Submit" > </div> </form> <div class="div1"> <center><h1>Recent Transaction</h1></center><hr> <table cellpadding="20" border="2"> <tr> <th>Date</th> <th>Payment Id</th> <th>Amount</th> <th>Txn No.</th> <th>Status</th> </tr> <tr> <td>2020/01/01</td> <td>1234</td> <td>10000</td> <td>00987766555</td> <td>Approved</td> </tr> <tr> <td>2020/01/01</td> <td>1234</td> <td>10000</td> <td>00987766555</td> <td>Approved</td> </tr> <tr> <td>2020/01/01</td> <td>1234</td> <td>10000</td> <td>00987766555</td> <td>Approved</td> </tr> </table> </div> </div> </div> </div> <?php require'footer.php'; ?> </body> </html>
💾 保存文件
← 返回文件管理器