-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
40 lines (29 loc) · 1000 Bytes
/
index.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
<html>
<head>
<title> FacePay </title>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link href="style.css" rel="stylesheet">
<style>
.amount
{
padding: 100px;
}
</style>
</head>
<body>
<div class="tt">
<h3>FacePay</h3>
</div>
<div class = "back">
<br><br><h1 class= "hedd"> Enter Amount to Pay </h1>
<form action="pay.php" method="POST">
<div class="input-group">
<br><br><input class="form-control" type="number" min ="0" max="100000000" name="amount" placeholder="Enter Amount" required autofocus /><br><br>
<button type="submit" class="btn2 btn-info" style="vertical-align:middle"><span>Checkout</span></button>
</div>
</div>
</body>
</html>