-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathATM_Add.html
70 lines (57 loc) · 2.58 KB
/
ATM_Add.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ATM Details</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>
<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();>
<div class="form " id="submit">
<h2>Please fill up the ATM Details</h2><br>
<form name=" ATMAdd " action="ATM_Add.html " onsubmit="return document.getElementById( 'submit').innerHTML='<h1>New ATM Information is Successfully Added.</h1> <h3>Thank You.</h3><br/>' " method="POST ">
<label for="ATMName "><b>Bank Name</b></label><br>
<select name="ATMName " id="ATMName " required>
<option value="Not Selected ">Select</option>
<option value="AB Bank ">AB Bank</option>
<option value="IBBL ">IBBL</option>
<option value="DBBL ">DBBL</option>
<option value="Al Arafah Islami Bank ">Al Arafah Islami Bank</option>
<option value="EXIM Bank ">EXIM Bank</option>
</select>
<br/><br>
<label for="ATMid "><b>ATM ID</b></label><br>
<input type="text " placeholder="Enter ATM ID " name="ATMid " required>
<br/><br>
<label for="ATMphone "><b>ATM Contact Number</b></label><br>
<input type="text " placeholder="Enter ATM Contact Number " name="ATMphone " required>
<br/><br>
<label for="ATMAddress "><b>ATM Address</b></label><br>
<input type="textarea" placeholder="Enter ATM Address " name="ATMAddress " required>
<br /><br>
<button type="submit">ADD</button>
</form>
</div>
<br>
<button type="button " class="button" onclick="location.reload(true); ">Re-Add New ATM ID</button> <br><br>
<button type="button " class="button" onClick=" window.history.back(); ">Done</button> <br><br>
</body>
</html>