budget-go/backend/view/template/collabora/iframe.templ
2025-02-08 20:19:26 +01:00

15 lines
438 B
Text

package collabora
templ Iframe(url, token string) {
<html>
<body>
<form action={ templ.URL(url) } enctype="multipart/form-data" method="post" target="_self" id="form">
<input name="access_token" value={ token } type="hidden"/>
<p style="text-align: center; font-family: Verdana; color: #333">Chargement en cours...</p>
</form>
<script>
document.getElementById('form').submit()
</script>
</body>
</html>
}