我正在用 Java 做一个学校项目。我能够成功登录已注册的用户。但是当他/她登录时,我如何隐藏登录和注册页面链接并将其替换为 MyAlumni。注销后如何再次显示。这是我在 MasterPage 上的链接的编码
<td id="menucontainer" align="center">
<br>
<button id="homeBtn" onclick="window.location.href='Main.do'"></button>
<br>
<button id="loginBtn" onclick="window.location.href='ForwardGeneralAction.do?page=Login'"></button>
<br>
<button id="signupBtn" onclick="window.location.href='ForwardGeneralAction.do?page=SignUp'"></button>
<br>
<button id="helpBtn" onclick="window.location.href='ForwardGeneralAction.do?page=Help'"></button>
<br>
<button id="contactBtn" onclick="window.location.href='ForwardGeneralAction.do?page=Contact'"></button>
<br>
请逐步解释我必须做什么。非常感谢