2023-03-13 17:11:03 +01:00
|
|
|
<!DOCTYPE html>
|
2024-12-14 21:10:27 +01:00
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
2025-07-11 14:26:57 +02:00
|
|
|
<title>Authorize <%= name %></title>
|
2024-12-14 21:10:27 +01:00
|
|
|
</head>
|
2023-03-11 17:22:27 +01:00
|
|
|
<body>
|
|
|
|
|
|
2025-07-11 14:26:57 +02:00
|
|
|
<form id="submitForm" method="post" action="<%- submitUrl %>">
|
2023-06-20 19:58:09 +02:00
|
|
|
<!-- <button type="submit"></button> -->
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
|
|
document.getElementById('submitForm').submit();
|
|
|
|
|
|
|
|
|
|
</script>
|
2023-03-11 17:22:27 +01:00
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|