-
Notifications
You must be signed in to change notification settings - Fork 13
/
atm_simulator.php
93 lines (62 loc) · 2.18 KB
/
atm_simulator.php
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
83
84
85
86
87
88
89
90
91
92
93
<?php
include "validate_customer.php";
include "header.php";
include "customer_navbar.php";
include "customer_sidebar.php";
include "session_timeout.php";
?>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="customer_add_style.css">
</head>
<body>
<form class="add_customer_form" action="atm_simulator_action.php" method="post">
<div class="flex-container-form_header">
<h1 id="form_header">ATM Simulator</h1>
</div>
<div class="flex-container">
<div class=container>
<label>Enter Amount (in INR) :</label>
<br>
<input name="amt" size="24" type="text" required />
</div>
</div>
<div class="flex-container">
<div class=container>
<label>Type :</label>
</div>
<div class="flex-container-radio">
<div class="container">
<input type="radio" name="type" value="debit" id="debit-radio" checked>
<label id="radio-label" for="debit-radio"><span class="radio">Debit</span></label>
</div>
<div class="container">
<input type="radio" name="type" value="credit" id="credit-radio">
<label id="radio-label" for="credit-radio"><span class="radio">Credit</span></label>
</div>
</div>
</div>
<div class="flex-container">
<div class=container>
<label>PIN(4 digit) :</b></label><br>
<input name="pin" size="12" type="password" required />
</div>
</div>
<div class="flex-container">
<div class="container">
<button type="submit">Submit</button>
</div>
<div class="container">
<button type="reset" class="reset" onclick="return confirmReset();">Reset</button>
</div>
</div>
</form>
<script>
function confirmReset() {
return confirm('Do you really want to reset?')
}
</script>
</body>
</html>