Files
zfile/src/main/resources/templates/callback.html
zhaojun1998 be633ebe1a OneDrive 支持
2020-01-20 21:36:13 +08:00

26 lines
451 B
HTML

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>CallBack Result</title>
</head>
<body>
<h1>accessToken</h1>
<div>
<input type="text" th:value="${accessToken}">
</div>
<h1>refreshToken</h1>
<div>
<input type="text" th:value="${refreshToken}">
</div>
</body>
<style>
input {
height: 30px;
width: 100%;
}
</style>
</html>