12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <%--
- Created by IntelliJ IDEA.
- User: Administrator
- Date: 2024/8/7 星期三
- Time: 13:15
- To change this template use File | Settings | File Templates.
- --%>
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <% String path = request.getContextPath(); %>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>选择身份</title>
- <style>
- .button {
- display: inline-block;
- padding: 20px 40px;
- margin: 10%;
- font-size: 24px;
- color: white;
- background-color: deepskyblue;
- border: none;
- border-radius: 10px;
- cursor: pointer;
- text-align: center;
- text-decoration: none;
- }
- .button:active {
- background-color: lightblue;
- }
- </style>
- <script src="js/jquery.js"></script>
- </head>
- <body>
- <div style="text-align: center; margin-top: 50px;">
- <a href="direct/sift.action?identity=doctor"><button class="button" name="doctor">我是医生</button></a>
- <a href="direct/sift.action?identity=patience"><button class="button" name="patience">我是病人</button></a>
- <%-- <a href="test/t.action"><button class="button" name="patience">测试</button></a>--%>
- </div>
- </body>
- <script>
- </script>
- </html>
|