123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <!DOCTYPE html>
- <html lang="en" xmlns:th="http://www.w3.org/1999/xhtml">
- <head>
- <meta charset="UTF-8">
- <title>Login</title>
- <link rel="stylesheet" type="text/css" href="Login.css"/>
- <style type="text/css">
- html{
- width: 100%;
- height: 100%;
- overflow: hidden;
- font-style: sans-serif;
- }
- body{
- width: 100%;
- height: 100%;
- font-family: 'Open Sans',sans-serif;
- margin: 0;
- background-color: #2b2727;
- }
- #login{
- position: absolute;
- top: 50%;
- left:50%;
- margin: -150px 0 0 -250px;
- width: 500px;
- height: 200px;
- background-color: #504b4b;
- }
- #login h1{
- color: #fff;
- text-shadow:0 0 10px;
- letter-spacing: 1px;
- text-align: center;
- }
- h1{
- font-size: 2em;
- margin: 0.67em 0;
- }
- input{
- width: 278px;
- height: 18px;
- margin-bottom: 10px;
- outline: none;
- padding: 10px;
- font-size: 13px;
- color: #fff;
- text-shadow:1px 1px 1px;
- border-top: 1px solid #312E3D;
- border-left: 1px solid #312E3D;
- border-right: 1px solid #312E3D;
- border-bottom: 1px solid #56536A;
- border-radius: 4px;
- background-color: #2D2D3F;
- }
- .but{
- width: 300px;
- min-height: 20px;
- display: block;
- background-color: #e9982f;
- border: 1px solid #e9982f;
- color: rgb(0, 0, 0);
- padding: 9px 14px;
- font-size: 20px;
- line-height: normal;
- border-radius: 5px;
- margin: 0;
- font-weight: bold;
- }
- </style>
- </head>
- <body>
- <div id="login">
- <h1>
- <p>这是主页</p>
- <span >
- <a th:if="${session.loginUser==null}" href="http://login.codeshop.com/view/login?target=http://www.codeshop.com/view/main" style="text-decoration:none; color: #e9982f;">登录</a>
- </span>
- </h1>
-
- <h1>
- <p th:unless="${session.loginUser==null}">
- <span style="color: aqua" th:text="${session.loginUser.username}"></span>已登录
- </p>
- </h1>
- </div>
-
- </body>
- </html>
|