20 lines
302 B
HTML
20 lines
302 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Authorize <%= name %></title>
|
|
</head>
|
|
<body>
|
|
|
|
<form id="submitForm" method="post" action="<%- submitUrl %>">
|
|
<!-- <button type="submit"></button> -->
|
|
</form>
|
|
|
|
<script>
|
|
|
|
document.getElementById('submitForm').submit();
|
|
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|