mirror of
https://github.com/zfile-dev/zfile.git
synced 2025-04-19 05:34:52 +00:00
26 lines
451 B
HTML
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> |