-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added schedule.html for /schedule redirect to google app script sched…
…ule feature
- Loading branch information
Robby P
committed
Nov 2, 2024
1 parent
6cf73ae
commit d384b8b
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<!DOCTYPE html> | ||
|
||
<head> | ||
<meta charSet="utf-8" /> | ||
<meta http-equiv="x-ua-compatible" content="ie=edge" /> | ||
<meta name="robots" content="noindex, nofollow"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> | ||
<script> | ||
window.location.href = "https://script.google.com/macros/s/AKfycbzpL42Mbkx_NbvKKd7oWSb7aS8XMNxAo1CdnVUm-u4/exec"; | ||
</script> | ||
<style> | ||
body { | ||
background-color: #f0f0f0; | ||
font-family: Arial, sans-serif; | ||
font-size: 16px; | ||
margin: 0; | ||
padding: 0; | ||
flex: 1; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
justify-items: center; | ||
height: 100vh; | ||
} | ||
|
||
.redirect a { | ||
font-weight: bold; | ||
font-size: 2rem; | ||
color: black; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div class="redirect"> | ||
<a href="https://script.google.com/macros/s/AKfycbzpL42Mbkx_NbvKKd7oWSb7aS8XMNxAo1CdnVUm-u4/exec">Redirecting...</a> | ||
</div> | ||
</body> | ||
|
||
</html> |