15 lines
438 B
Text
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>
|
|
}
|