マネージャーのページがあり、ページの右側にログアウトボタンを追加したいと考えています。
たとえば、ボタンを1つずつ追加する方法を知っています。
上記のページのコードは次のとおりです。
<!-- Bank manager's permissions -->
<!DOCTYPE html>
<html>
<head><title>Bank Manager's Transactions Page</title>
<link rel="stylesheet" href="./css/styles.css" type="text/css"/>
</head>
<body>
<table class="title">
<tr><th>Manager's Transactions Page</th></tr>
</table>
<h1>Hello ${name.firstName} ${name.lastName} , You've logged in successfully!</h1>
<h1>
Please choose one of the following options
</h1>
<!-- The followings are Manager's permissions -->
<fieldset>
<legend>To get a list of all the employees at the bank</legend>
<form action="blablabla"> <!-- THAT ONE forwards to a servlet that's called Admin1.java -->
<a href="adminAdds1">Press here to continue</a>
</form>
</fieldset>
<fieldset>
<legend>To get a list of all the clients at the bank</legend>
<form action="blablabla"> <!-- THAT ONE forwards to a servlet that's called Admin1.java -->
<a href="adminAdds1">Press here to continue</a>
</form>
</fieldset>
<fieldset>
<legend>To get a list of all the overdraft clients at the bank</legend>
<form action="blablabla"> <!-- THAT ONE forwards to a servlet that's called Admin1.java -->
<a href="adminAdds1">Press here to continue</a>
</form>
</fieldset>
<fieldset>
<legend>To get the number of overdraft clients at the bank</legend>
<form action="blablabla"> <!-- THAT ONE forwards to a servlet that's called Admin1.java -->
<a href="adminAdds1">Press here to continue</a>
</form>
</fieldset>
<fieldset>
<legend>To get a full financial report for the current month</legend>
<form action="blablabla"> <!-- THAT ONE forwards to a servlet that's called Admin1.java -->
<a href="adminAdds1">Press here to continue</a>
</form>
</fieldset>
<fieldset>
<legend>To get a full financial report for a specific date</legend>
<form action="blablabla"> <!-- THAT ONE forwards to a servlet that's called Admin1.java -->
<a href="adminAdds1">Press here to continue</a>
</form>
</fieldset>
</body>
JSP ファイルのコーナーの 1 つにボタンを追加するにはどうすればよいですか?
よろしく