44 lines
2.3 KiB
PHP
44 lines
2.3 KiB
PHP
<?php
|
|
require_once __DIR__ . '/includes/lang.php';
|
|
require_once __DIR__ . '/includes/header.php';
|
|
?>
|
|
<main class="container py-5">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-8">
|
|
<h1 class="mb-4 fw-bold text-center"><?php echo __('submit_request'); ?></h1>
|
|
<div class="card bg-dark border-secondary p-4">
|
|
<form action="#" method="POST">
|
|
<div class="mb-3">
|
|
<label class="form-label text-muted small">Your Email Address</label>
|
|
<input type="email" class="form-control bg-dark text-white border-secondary" placeholder="email@example.com" required>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label class="form-label text-muted small">Issue Type</label>
|
|
<select class="form-select bg-dark text-white border-secondary">
|
|
<option>Account Access</option>
|
|
<option>Deposit/Withdrawal</option>
|
|
<option>Trading Issue</option>
|
|
<option>Bug Report</option>
|
|
<option>Other</option>
|
|
</select>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label class="form-label text-muted small">Subject</label>
|
|
<input type="text" class="form-control bg-dark text-white border-secondary" placeholder="Short description of the issue" required>
|
|
</div>
|
|
<div class="mb-4">
|
|
<label class="form-label text-muted small">Description</label>
|
|
<textarea class="form-control bg-dark text-white border-secondary" rows="5" placeholder="Please provide details about your request..." required></textarea>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary w-100 py-3 fw-bold">Submit Ticket</button>
|
|
</form>
|
|
<div class="mt-4 text-center small text-muted">
|
|
Our typical response time is under 2 hours.
|
|
For urgent issues, please use the live chat in the bottom right.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<?php require_once __DIR__ . '/includes/footer.php'; ?>
|