28 lines
1.2 KiB
PHP
28 lines
1.2 KiB
PHP
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>Membuka Dokumen...</title>
|
||
|
|
<style>
|
||
|
|
body { font-family: sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f8fafc; margin: 0; }
|
||
|
|
.loader { text-align: center; color: #64748b; }
|
||
|
|
.spinner { border: 4px solid #e2e8f0; border-top: 4px solid #3b82f6; border-radius: 50%; width: 40px; height: 40px; animation: spin 1s linear infinite; margin: 0 auto 15px auto; }
|
||
|
|
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body onload="document.getElementById('seeddms-login').submit();">
|
||
|
|
|
||
|
|
<div class="loader">
|
||
|
|
<div class="spinner"></div>
|
||
|
|
<h3>Sedang menghubungkan ke server dokumen...</h3>
|
||
|
|
<p>Mohon tunggu sebentar.</p>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<form id="seeddms-login" action="{{ $loginUrl }}" method="POST" style="display: none;">
|
||
|
|
<input type="hidden" name="guestlogin" value="1">
|
||
|
|
<input type="hidden" name="referuri" value="{{ $targetUri }}">
|
||
|
|
</form>
|
||
|
|
|
||
|
|
</body>
|
||
|
|
</html>
|