GIF89a
<?php ob_start(); ini_set('error_reporting', E_STRICT); include("session.php"); include("connect.php"); include("libs.php"); mysqli_set_charset($conn,'utf8'); date_default_timezone_set('Asia/Kolkata'); setOnline($conn,$_COOKIE["user_id"]); ?> <!DOCTYPE html> <html> <?php include'head.php'; ?> <body> <?php include'header.php'; ?> <sections> <div class="container rounded"> <div class="row d-flex justify-content-center"> <div class="col-xs-5 col-sm-8 col-md-8 col-lg-6 col-xl-4"> <div class="card-header d-flex justify-content-between align-items-center"> <!-- <h2 class="text-primary py-1">Resource</h2> --> </div> <div class="row shadow my-3"> <div class="col-12 bg-light"> <form class="mx-md-4 my-4 bg-light"> <h5 class="text-muted">Help and Support</h5> <div class="d-flex flex-row align-items-center my-4"> <div class="form-outline flex-fill mb-0"> <label class="form-label text-muted">Topic *</label> <select class="form-select text-muted" aria-label="Default select example"> <option selected>Select Topic</option> <option value="1">One</option> <option value="2">Two</option> <option value="3">Three</option> </select> </div> </div> <div class="d-flex flex-row align-items-center mb-4"> <div class="form-outline flex-fill mb-0"> <label class="form-label text-muted">Message *</label> <textarea class="form-control" id="exampleFormControlTextarea1" rows="4"></textarea> </div> </div> <div class="d-flex flex-row align-items-center mb-4"> <div class="form-outline flex-fill mb-0"> <label class="form-label text-muted">Attachment</label> <input type="file" id="email" name="email" class="form-control" placeholder="YOUR EMAIL" /> </div> </div> <div class="d-grid"> <button class="btn btn-primary py-2" type="button">Submit <i class="bi bi-arrow-right text-white"></i> </button> </div> <div class="d-flex flex-row align-items-center my-4"> <div class="form-outline flex-fill mb-0"> <label class="form-label text-muted">You can also reach out to us through :</label> <p class="text-muted">abc@gmail.com</p> <p class="text-muted">+91- 9812012345</p> </div> </div> </form> </div> </div> </div> </div> </div> </section> <script> function openNav() { document.getElementById("mySidebar").style.width = "250px"; document.getElementById("main").style.marginLeft = "250px"; } function closeNav() { document.getElementById("mySidebar").style.width = "0"; document.getElementById("main").style.marginLeft= "0"; } </script> </body> </html>