-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCall.html
82 lines (70 loc) · 2.96 KB
/
Call.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Call Manage</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="stylesheet" href="css/Bootsrap-css.css">
<script src="JS/Clock.js" type="text/javascript"></script>
<script src="JS/BackButton.js"></script>
<script src="JS/Clock.js"></script>
<div class="header">
<div id="logo">
<h1><img src="css/picture/logo.png" alt="logo">
<a href="http://www.zztlbd.com/" style="text-decoration: none; color: black;">
<b>Zara Zaman Technology Ltd.</b>
</a>
</h1>
</div>
<div id="com_name ">
<h2>Call Management System</h2>
</div>
<div class="clock">
<span id='clock'></span>
</div>
</div>
</head>
<body class="body " onload=display_ct();>
<span id='clock'></span>
<div class="form ">
<form name="call_manage_add " action="Call_Add.html " method="POST ">
<label for="new_call ">Select <b>ATM ID</b> to Add New Call</label><br>
<select name="new_call ">
<option value="Not Selected ">Select</option>
<option value="Demo1 ">Demo1</option>
<option value="Demo2 ">Demo2</option>
<option value="Demo3 ">Demo3</option>
<option value="Demo4 ">Demo4</option>
</select><br>
<button type="button "> Add New Call </button>
<br><br>
</form>
<form name="call_eng_assign " action="Call_Eng_Ass.html " method="POST ">
<label for="engineer_assign ">Select <b>Called ATM ID</b> to Assign Engineer</label><br>
<select name="engineer_assign ">
<option value="Not Selected ">Select</option>
<option value="Demo1 ">Demo1</option>
<option value="Demo2 ">Demo2</option>
<option value="Demo3 ">Demo3</option>
<option value="Demo4 ">Demo4</option>
</select><br>
<button type="button ">Assign Engineer</button></a>
<br><br>
</form>
<form name="call_status " action="Call_Status_Up.html " method="POST ">
<label for="call_status ">Select <b>Engineer Assigned ATM ID</b> to Update Call Status </label><br>
<select name="call_status ">
<option value="Not Selected ">Select</option>
<option value="Demo1 ">Demo1</option>
<option value="Demo2 ">Demo2</option>
<option value="Demo3 ">Demo3</option>
<option value="Demo4 ">Demo4</option>
</select><br>
<button type="button "> Update Status </button>
<br><br>
</form>
<button onclick="back()" type="button " class="button ">Back</button><br><br><br>
</div>
</body>
</html>