✏️ 正在编辑: add_member.php
路径:
/home/llpreacharge/public_html/MLM/add_member.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<html> <head> <title>Add New Member</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; } .div1 input, .div1 select{ width:94%; height:55px; margin:10px; padding:2px 10px; border-radius:5px; border:1px solid green; font-size:19px; } input[type=file] { border:none; } .div1 textarea{ width:94%; height:100px; margin:10px 0; padding:2px 10px; border-radius:5px; border:1px solid green; font-size:19px; } .divImg{ background:white; width:94%; height:100px; margin:10 15px; padding:8px; border-radius:5px; border:1px solid green; font-size:19px; text-align:left; } .divImg img{ width:19%; height:80px; float:left; } .divImg input{ width:70%; float:right; font-size:15px; } 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 Member:-</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="text" name="uName" placeholder="Full Name ..."> <input type="text" name="fName" placeholder="Father's Name ..."> <input type="number" name="mobile" placeholder="Mobile No ..."> <input type="email" name="email" placeholder="E-Mail ..."> <input type="text" name="pan" placeholder="Pan No ..."> <input type="text" name="gst" placeholder="GST No ..."> </div> <div class="div1"> <select name="sponser"> <option>--Select Direct Sponser--</option> <option>Sponser 1</option> <option>Sponser 2</option> <option>Sponser 3</option> </select> <select name="parent"> <option>--Select Parent--</option> <option>Parent 1</option> <option>Parent 2</option> <option>Parent 3</option> </select> <select name="side"> <option>--Select Side--</option> <option>Right</option> <option>Left</option> </select> <input type="text" name="pin" placeholder="Pin Code..."> <textarea name="address" placeholder="Address .."></textarea> <input type="submit" name="submit" value="Submit" > </div> </form> </div> </div> </div> <?php require'footer.php'; ?> </body> </html>
💾 保存文件
← 返回文件管理器