Viewing file: 4a774175e16aa95be25729a492b79729.php (6.46 KB) -rwxrwxrwx Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <title>PicoSMS - A Bulk SMS Marketing Tool</title>
<!-- Bootstrap CSS --> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" /> <!-- Font Awesome 4.7 --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
<style> :root { --primary-color: #4a6bff; --secondary-color: #f8f9fa; --accent-color: #ff6b6b; --text-color: #333; --light-text: #6c757d; --border-color: #dee2e6; }
body { background-color: #f4f7fd; color: var(--text-color); }
.divider { height: 3px; background: linear-gradient(90deg, transparent, var(--primary-color), transparent); margin: 30px 0; border-radius: 10px; }
.demo-card { border: 2px solid #748ee6; border-radius: 12px; background: #fff; transition: border-color 0.3s ease; position: relative; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05); padding: 25px 20px; } .demo-card:hover { border-color: transparent; border-bottom-color: var(--primary-color); } /* .demo-card:hover::after { content: ''; position: absolute; bottom: 0; width: 100%; height: 3px; background: var(--primary-color); border-radius: 2px; transition: all 0.3s ease; } */
.demo-login-btn { transition: background-color 0.3s; font-weight: 500; padding: 0.5rem 1.25rem; border-radius: 30px; }
.demo-login-btn:hover { background-color: #3b5fe3; color: #fff; }
.card-title { font-weight: 600; font-size: 1.2rem; margin-bottom: 0.5rem; }
.credential-card { border-radius: 15px; background-color: #fff; border: 1px solid #d1d1f1; }
.credential-title { color: var(--primary-color); }
.icon { color: var(--primary-color); }
.subtitle { color: var(--light-text); }
.click-view { cursor: pointer; } </style> </head>
<body> <div class="container py-5"> <header class="text-center mb-4 pb-3"> <h1 class="text-primary display-4 fw-bold">PicoSMS</h1> <p class="subtitle fs-5 fst-italic">A Bulk SMS Marketing Tool with DLT Support</p> </header>
<div class="divider"></div>
<!-- Role Cards --> <div class="row g-4 my-4"> <div class="col-md-6 col-lg-3"> <div class="demo-card text-center"> <div class="mb-3"> <i class="fa fa-window-maximize fa-3x icon"></i> </div> <h5 class="card-title">Frontend</h5> <p class="text-muted">Explore the public interface of the project.</p> <button type="button" data-url="<?php echo e(route('home',['type'=>'front'])); ?>" class="btn btn-primary demo-login-btn click-view">View Frontend</button> </div> </div>
<div class="col-md-6 col-lg-3"> <div class="demo-card text-center"> <div class="mb-3"> <i class="fa fa-shield fa-3x icon"></i> </div> <h5 class="card-title">Admin</h5> <p class="text-muted">Manage users, reports, and settings.</p> <button type="button" data-url="<?php echo e(route('demo.login',['type'=>'admin'])); ?>" class="btn btn-primary demo-login-btn click-view">Login as Admin</button> </div> </div>
<div class="col-md-6 col-lg-3"> <div class="demo-card text-center"> <div class="mb-3"> <i class="fa fa-user fa-3x icon"></i> </div> <h5 class="card-title">Customer</h5> <p class="text-muted">Send messages, view stats, and more.</p> <button type="button" data-url="<?php echo e(route('demo.login',['type'=>'customer'])); ?>" class="btn btn-primary demo-login-btn click-view">Login as Customer</button> </div> </div>
<div class="col-md-6 col-lg-3"> <div class="demo-card text-center"> <div class="mb-3"> <i class="fa fa-user-circle fa-3x icon"></i> </div> <h5 class="card-title">Reseller</h5> <p class="text-muted">Manage sub-accounts and volume plans.</p> <button type="button" data-url="<?php echo e(route('demo.login',['type'=>'reseller'])); ?>" class="btn btn-primary demo-login-btn click-view">Login as Reseller</button> </div> </div> </div>
<div class="divider"></div>
<!-- Credential Cards --> <div class="row g-4 justify-content-center"> <div class="col-md-6 col-lg-4"> <div class="credential-card card shadow-sm"> <div class="card-body"> <h3 class="credential-title card-title text-center fs-4 mb-3 pb-2 border-bottom">Admin Credentials</h3> <p><strong>Username:</strong> <span class="text-muted">admin@demo.com</span></p> <p><strong>Password:</strong> <span class="text-muted">123456</span></p> </div> </div> </div>
<div class="col-md-6 col-lg-4"> <div class="credential-card card shadow-sm"> <div class="card-body"> <h3 class="credential-title card-title text-center fs-4 mb-3 pb-2 border-bottom">Reseller Credentials</h3> <p><strong>Username:</strong> <span class="text-muted">reseller@demo.com</span></p> <p><strong>Password:</strong> <span class="text-muted">123456</span></p> </div> </div> </div>
<div class="col-md-6 col-lg-4"> <div class="credential-card card shadow-sm"> <div class="card-body"> <h3 class="credential-title card-title text-center fs-4 mb-3 pb-2 border-bottom">Customer Credentials</h3> <p><strong>Username:</strong> <span class="text-muted">customer@demo.com</span></p> <p><strong>Password:</strong> <span class="text-muted">123456</span></p> </div> </div> </div> </div> </div>
<!-- Bootstrap & jQuery --> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script> <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script> $(document).on('click', '.click-view', function () { const url = $(this).attr('data-url'); if (url) { window.open(url, '_blank'); } }); </script>
</body> </html> <?php /**PATH /home/picotech/domains/test.sms.picotech.app/public_html/resources/views/demo.blade.php ENDPATH**/ ?>
|