-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
18 lines (18 loc) · 867 Bytes
/
index.php
File metadata and controls
18 lines (18 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!-- Home page. Options to login, 'my tickets' (list), create new ticket -->
<?php require_once 'views/header.php'?>
<main class = "homeContent">
<h2>This Ticket System</h2>
<p>This is a support ticket system in which a client can submit a ticket requesting support. A staff user is able to see these tickets and respond via online chat. A user can see a list of tickets, and click the details of a ticket to be redirected to a details page that displays existing messages on the selected ticket, along with a form to submit a new message.
</br>
<h3>Login Credentials For Testing:</h3>
<div>Staff User
<li>Username: sjohnson</li>
<li>password: password</li>
</div>
</br>
<div>Client User
<li>Username: rthompson</li>
<li>password: password</li>
</div>
</main>
<?php require_once 'views/footer.php' ?>