22 lines
905 B
PHP
22 lines
905 B
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<main class="main-content">
|
|
<header class="header mobile-header">
|
|
<div class="user-greeting">
|
|
<a href="{{ route('home') }}"><i class="fas fa-arrow-left"></i></a>
|
|
<h3>Informasi</h3>
|
|
</div>
|
|
</header>
|
|
|
|
<div class="upload-container" style="text-align: center; padding: 40px 20px;">
|
|
<div style="font-size: 60px; color: #e74c3c; margin-bottom: 20px;">
|
|
<i class="fas fa-calendar-times"></i>
|
|
</div>
|
|
<h4>Akses Upload Ditutup</h4>
|
|
<p>Mohon maaf, periode penginputan meteran mandiri bulan ini belum dibuka atau sudah berakhir. Silakan hubungi admin PAMSIMAS untuk informasi lebih lanjut.</p>
|
|
<br>
|
|
<a href="{{ route('home') }}" class="btn-primary-upload" style="text-decoration: none; background: #6c757d;">Kembali ke Beranda</a>
|
|
</div>
|
|
</main>
|
|
@endsection |