login.jsp
来自「它统一管理各个应用系统用户的身份验证」· JSP 代码 · 共 60 行
JSP
60 行
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<%--
The taglib directive below imports the JSTL library. If you uncomment it,
you must also add the JSTL library to the project. The Add Library... action
on Libraries node in Projects view can be used to add the JSTL 1.1 library.
--%>
<%--
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
--%>
<html lang="en">
<head>
<title>Web SSO Auth</title>
<link rel="STYLESHEET" type="text/css" href="pattern.css">
</head>
<body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0">
<br>
<div align="center">
<table border="0" cellpadding="0" cellspacing="0" width="748" class="toptable">
<tr>
<td height="85" width="300">
<h3><font size="4" face="微软雅黑">Web SSO Auth</font></h3><font size="4" face="微软雅黑"><br></font>
<h2 style="font-weight: normal;"><font size="3" face="微软雅黑">by Guo Shuyang of SSDUT</font></h2>
<h1>Please login</h1>
</td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="748" class="centertable">
<tr>
<td>
<table border='0' cellspacing='0' cellpadding='0'>
<tr>
<td width='598' valign='top' class='content'>
<h1><font face="微软雅黑" size="4">Please Login</font></h1>
<form action='/SSOAuth/SSOAuth' method='post'><font face="微软雅黑"><font size="3"><strong> Username:</strong> <input type="text" name="username" size="20"><br><strong> Password: </strong><input type="password" name="password" size="22"> <input type="hidden" name="goto" value='<%=request.getParameter("goto")%>'> </font><br><br></font><blockquote><blockquote><font size="3" face="微软雅黑"><input type="submit" value="Login"></font></blockquote></blockquote>
</form>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?