emp.jsp 632 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
<!DOCTYPE html>
<html>
<head>
    
</head>
<body>
    <h3>Welcome, Enter The course datails</h3>

    <form:form method="POST" action="addcourse" modelAttribute="course">
        <table>
            <tr>
                <td><form:label path="name">Name</form:label></td>
                <td><form:input path="name"></td>
            </tr>

            <tr>
                <td><form:label path="id">ID</form:label></td>
                <td><form:input path="id"></td>
            </tr>

            <tr>
                <td><input type="submit" value="subtmit"></td>
            </tr>
        </table>  
    </form> 
</body>
</html>