-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcajero.html
More file actions
48 lines (43 loc) · 1.01 KB
/
cajero.html
File metadata and controls
48 lines (43 loc) · 1.01 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form action="calculo.php" method="post" enctype="multipart/form-data">
<label>
Nombre del Cliente:
<input type="text" name="nombre">
</label>
<br><br>
<label>
Saldo Actual:
<input type="text" name="saldo">
</label>
<br><br>
<label>
OPERACIONES
</label>
<br><br>
<label>
Abono
<input type="radio" value="Abono" name="op">
</label>
<label>
Cargo
<input type="radio" value="Cargo" name="op">
</label>
<br><br>
<label>
Importe:
<input type="text" name="monto">
</label>
<br><br>
<button type="submit">
Hecho
</button>
</form>
</body>
</html>