-
Notifications
You must be signed in to change notification settings - Fork 1
/
home.php
66 lines (54 loc) · 2.63 KB
/
home.php
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
<!doctype html>
<html lang="en">
<head>
<title>Payment and SMS</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</head>
<body>
<nav class="navbar navbar-expand-md navbar-dark bg-dark mb-4">
<a class="navbar-brand" href="#">Top navbar</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Link</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#">Disabled</a>
</li>
</ul>
<form class="form-inline mt-2 mt-md-0">
<input class="form-control mr-sm-2" type="text" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
</form>
</div>
</nav>
<main role="main" class="container">
<div class="jumbotron">
<h1>Payment Instamojo</h1>
<p class="lead">This example is a quick exercise to illustrate how the Paayment API use.</p>
<button class="btn btn-lg btn-primary">
<a style="color: white" href="index.php" role="button">Payment »</a></button>
</div>
<div class="jumbotron">
<h1>Payment PayUMoney</h1>
<p class="lead">This example is a quick exercise to illustrate how the Paayment API use.</p>
<button class="btn btn-lg btn-primary">
<a style="color: white" href="payumoney.php" role="button">Payment »</a></button>
</div>
<div class="jumbotron">
<h1>SMS example</h1>
<p class="lead">This example is a quick exercise to illustrate how SMS API use.</p>
<form action="sms.php" method="GET">
<button style="color: white" name="btn" class="btn btn-lg btn-primary">SMS »</button>
</form>
</div>
</main>
</body>
</html>