-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUserTransactions.aspx
139 lines (118 loc) · 5.18 KB
/
UserTransactions.aspx
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="UserTransactions.aspx.cs" Inherits="WebApplication2.UserTransactions" %>
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<title></title>
</head>
<body>
<div style="background-color: aliceblue; color: black;height: 100px" class="jumbotron jumbotron-fluid">
<div class="container">
<div class="row">
<div class="col-sm-9">
<h1 class="display-4" style="font-weight: bolder;;font-size: 4vw">Bank with some name</h1>
<p class="lead" style="font-weight: bold;font-size: 1vw">You can bank on us!</p>
</div>
</div>
<div class="container">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="#" style="font-weight: bolder;font-size: 2vw"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="UserHome.aspx" style="font-weight: bolder;font-size: 2vw">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="UserTranscations.aspx" style="font-weight: bolder;font-size: 2vw">Transactions</a>
</li>
<li class="nav-item">
<a class="nav-link" href="UserAccountBalance.aspx" style="font-weight: bolder;font-size: 2vw">Balance</a>
</li>
<li class="nav-item">
<a class="nav-link" href="UserBill.aspx" style="font-weight: bolder;font-size: 2vw">Bills</a>
</li>
</li>
</ul>
<form class="d-flex">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success" type="submit">Search</button>
</form>
</div>
</div>
</nav>
</div>
<h3 class="mb-3">Make Transaction</h3>
<form id="form1" runat="server">
<div class="row g-3">
<div class="col-sm-6">
<label for="acnumber" class="form-label">Your Account Number</label>
<br />
<div class="invalid-feedback">Account number is required</div>
<asp:TextBox ID="AccNumTB" runat="server" Width="433px"></asp:TextBox>
</div>
<div class="col-sm-6">
<label for="rcacnumber" class="form-label">Recipient Account Number</label>
<br />
<div class="invalid-feedback">Account number is required</div>
<asp:TextBox ID="RcpAccTB" runat="server" Width="428px"></asp:TextBox>
</div>
</div>
<hr class="my-2">
<div class="row g-3">
<div class="col-sm-6">
<label for="tamount" class="form-label">Transaction Amount</label>
<br />
<div class="invalid-feedback">Transaction Amount is required</div>
<asp:TextBox ID="tamountTB" runat="server" Width="426px"></asp:TextBox>
</div>
<div class="col-sm-6">
Enter Account Password
<br />
<div class="invalid-feedback">Transaction type is required</div>
<asp:TextBox ID="tpasswordTB" runat="server" Width="423px"></asp:TextBox>
</div>
</div>
<hr class="my-4">
<center>
<asp:Button ID="Transaction" runat="server" OnClick="Transaction_Click" Text="Make Transaction" />
</center>
</form>
<script>
(function () {
'use strict'
var forms = document.querySelectorAll('.needs-validation')
.forEach(function (form) {
form.addEventListener('submit', function (event) {
if (!form.checkValidity()) {
event.preventDefault()
event.stopPropagation()
}
form.classList.add('was-validated')
}, false)
})
})()
</script>
<!-- Optional JavaScript; choose one of the two! -->
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js" integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous"></script>
<!-- Option 2: Separate Popper and Bootstrap JS -->
<!--
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js" integrity="sha384-q2kxQ16AaE6UbzuKqyBE9/u/KzioAlnx2maXQHiDX9d4/zp8Ok3f+M7DPm+Ib6IU" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.min.js" integrity="sha384-pQQkAEnwaBkjpqZ8RU1fF1AKtTcHJwFl3pblpTlHXybJjHpMYo79HY3hIi4NKxyj" crossorigin="anonymous"></script>
-->
</body>
</html>