forked from yeghiakoronian/BuyACar-Ecommerce-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkTrans.html
43 lines (41 loc) · 1.32 KB
/
checkTrans.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Checking transactions</title>
</head>
<body>
<h1>Checking Transactions</h1>
<form id="form1" name="form1" method="post" action="">
<p>
<label for="ID">Check transaction by id:</label>
<input type="text" name="ID" id="ID" />
</p>
<p>
<input type="submit" name="submit" id="submit" value="Submit" />
</p>
</form>
<form id="form2" name="form2" method="post" action="">
<p>
<label for="email">Check transactions for a user by email:</label>
<input type="text" name="email" id="email" />
</p>
<p>
<input type="submit" name="submit2" id="submit2" value="Submit" />
</p>
</form>
<form id="form3" name="form3" method="post" action="">
<p>
<label for="date">Check transaction in a specific date:</label>
<input type="text" name="date" id="date" />
</p>
<p>
<input type="submit" name="submit3" id="submit3" value="Submit" />
</p>
</form>
<form id="form4" name="form4" method="post" action="">
<input type="submit" name="submit4" id="submit4" value="Check all transactions" />
</form>
<a href="adminIndex.php"><h3>Back</h3></a></p>
</body>
</html>