mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
6c323403b3
* feat(core): auto sign-out * fix(core): path when start from root * refactor(core): per review
13 lines
429 B
HTML
13 lines
429 B
HTML
<!-- https://github.com/panva/node-oidc-provider/blob/main/docs/README.md#logoutsource -->
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Sign Out</title>
|
|
</head>
|
|
<body onload="document.getElementById('op.logoutForm').submit();">
|
|
${form}
|
|
<input type="hidden" form="op.logoutForm" value="yes" name="logout" />
|
|
</body>
|
|
</html>
|