-
Notifications
You must be signed in to change notification settings - Fork 0
/
demand.html
39 lines (39 loc) · 1.39 KB
/
demand.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<title>Tracking Platform</title>
<link rel="stylesheet" href="demandstyles.css">
</head>
<body>
<header>
<h1><center><u>Tracking Platform</u></center></h1>
</header>
<main>
<form>
<h2><center>Submit a Request/Demand</center></h2>
<label for="type">Select option:</label>
<select id="type" name="type">
<option value="request">Request</option>
<option value="demand">Demand</option>
</select>
<label for="description">Request/Demand Description:</label>
<textarea id="description"></textarea>
<p align="center">
<button type="submit">Submit</button>
</p>
<br>
<button type="submit"> <a style="text-decoration: none" href="feedback.html" style="display:block;height:100%;width:100%">Provide Feedback</a></button>
<br>
<button type="submit"> <a style="text-decoration: none" href="chat.html" style="display:block;height:100%;width:100%">Chat with a firm representative</a></button>
<br>
<button type="submit"> <a style="text-decoration: none" href="login.html" style="display:block;height:100%;width:100%">Back</a></button>
</form>
<br>
<section>
<center>
<h2>Request Status</h2>
</center>
</section>
</main>
</body>
</html>