Skip to content

Commit b4a30fb

Browse files
committed
added hyperlinks
1 parent ff30a6e commit b4a30fb

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

IntensiveCourse/Lesson4/app/src/main/webapp/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
<h1>University Management System</h1>
1010
<ul>
1111
<li>
12-
<a href="/app/students">Students</a>
12+
<h2><a href="/app/students">Students</a></h2>
1313
</li>
1414
<li>
15-
<a href="/app/classes">Classes</a>
15+
<h2><a href="/app/classes">Classes</a></h2>
1616
</li>
1717
</ul>
1818
</body>

IntensiveCourse/Lesson4/app/src/main/webapp/jsps/classes.jsp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
</head>
1313
1414
<body>
15+
<h1><a href="/app">University Management System</a></h1>
1516
<h2>Add / Edit class</h2>
1617
<form action="classes" method="post">
1718
<input type="hidden" name="classId" value="${clazz.classId}">

IntensiveCourse/Lesson4/app/src/main/webapp/jsps/students.jsp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
</head>
1212
1313
<body>
14+
<h1><a href="/app">University Management System</a></h1>
1415
<h2>Add / Edit student</h2>
1516
<form action="students" method="post">
1617
<input type="hidden" name="studentId" value="${student.studentId}">

0 commit comments

Comments
 (0)