You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.8 KiB
PHP
49 lines
1.8 KiB
PHP
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>DAODAO Checkout</title>
|
|
<!--Including Bootstrap style files-->
|
|
<link href="<?= $rootPath ?>css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="<?= $rootPath ?>css/bootstrap-responsive.min.css" rel="stylesheet">
|
|
|
|
<style>
|
|
body {
|
|
padding: 0;
|
|
}
|
|
|
|
.img-responsive {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* http://angrytools.com/gradient/ */
|
|
.bg-color {
|
|
color: white;
|
|
background: -moz-linear-gradient(0deg, #004094 0%, #0096D9 50%, #004094 100%);
|
|
/* ff3.6+ */
|
|
background: -webkit-gradient(linear, left top, right top, color-stop(0%, #004094), color-stop(50%, #0096D9), color-stop(100%, #004094));
|
|
/* safari4+,chrome */
|
|
background: -webkit-linear-gradient(0deg, #004094 0%, #0096D9 50%, #004094 100%);
|
|
/* safari5.1+,chrome10+ */
|
|
background: -o-linear-gradient(0deg, #004094 0%, #0096D9 50%, #004094 100%);
|
|
/* opera 11.10+ */
|
|
background: -ms-linear-gradient(0deg, #004094 0%, #0096D9 50%, #004094 100%);
|
|
/* ie10+ */
|
|
background: linear-gradient(90deg, #004094 0%, #0096D9 50%, #004094 100%);
|
|
/* w3c */
|
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#004094', endColorstr='#004094', GradientType=1);
|
|
/* ie6-9 */
|
|
}
|
|
|
|
form p {
|
|
margin-bottom: 0;
|
|
}
|
|
</style>
|
|
<script src="https://polyfill.io/v3/polyfill.min.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container-fluid" style="margin-bottom: 20px;">
|
|
<img class="card-img-top img-responsive" src="<?= $rootPath ?>img/banner.png">
|
|
</div> |