0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 18.225.56.181


Current Path : /var/www/oasis/html_modules/
Upload File :
Current File : /var/www/oasis/html_modules/createattclass.html

<script type="text/javascript">
    $(function () {
        $('#tabs').tabs()
    })
    $(function () {
        $('#sub_tabs').tabs()
    })
</script>

<div id="tabs">
    <ul style="height: 20px">
        <li><a href="#">Create Class</a></li>
    </ul>
    <div id="CollForm">
        <table
            id="mainTable"
            class="content-tbl"
            cellpadding="5"
            cellspacing="2"
            width="100%"
        >
            <tr id="dept_row">
                <td style="width: 140px" align="right">Department:</td>
                <td>
                    <select
                        onchange="loadteachdept()"
                        id="deptcode"
                        class="textInputEnabled"
                        style="width: 100%; height: 28px"
                    ></select>
                </td>
            </tr>
            <tr>
                <td style="width: 140px" align="right">Teacher:</td>
                <td>
                    <select
                        id="teachcode"
                        class="textInputEnabled"
                        style="width: 100%; height: 28px"
                    ></select>
                </td>
            </tr>
            <tr>
                <td style="width: 140px" align="right">Class Name:</td>
                <td>
                    <input
                        type="text"
                        id="classname"
                        class="textInputEnabled"
                        style="width: 99%; height: 20px"
                        placeholder="Enter class name here..."
                    />
                    <input
                        type="hidden"
                        id="classid"
                        value=""
                        style="width: 50%; text-align: left"
                    />
                </td>
            </tr>

            <tr>
                <td></td>
                <td>
                    <span
                        style="
                            background-color: #008cba;
                            border: none;
                            color: white;
                            padding: 6px 10px;
                            text-align: center;
                            text-decoration: none;
                            display: inline-block;
                            font-size: 13px;
                            cursor: pointer;
                            border-radius: 3px;
                        "
                        onclick="saveAttClass();"
                        >Save</span
                    >
                </td>
            </tr>
        </table>

        <div id="createview"></div>
    </div>
</div>