20 lines
492 B
Plaintext
20 lines
492 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Consul</title>
|
|
<script>
|
|
var CURRENT_REQUEST_KEY = '__torii_request';
|
|
var pendingRequestKey = window.localStorage.getItem(CURRENT_REQUEST_KEY);
|
|
|
|
if (pendingRequestKey) {
|
|
window.localStorage.removeItem(CURRENT_REQUEST_KEY);
|
|
var url = window.location.toString();
|
|
window.localStorage.setItem(pendingRequestKey, url);
|
|
}
|
|
|
|
window.close();
|
|
</script>
|
|
</head>
|
|
</html>
|