2 Star 1 Fork 2

航特咨询/Company-Website-Pro

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
shop-checkout.php 11.68 KB
一键复制 编辑 原始数据 按行查看 历史
杭城小刘 提交于 2019-07-01 10:02 . code fix
<!DOCTYPE html>
<!--[if IE 9]>
<html lang="en" class="ie9"> <![endif]-->
<!--[if IE 8]>
<html lang="en" class="ie8"> <![endif]-->
<!--[if !IE]><!-->
<html lang="en">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<title>杭州北望生物技术有限公司 | 首页</title>
<meta name="description" content="杭州北望生物技术有限公司网站">
<meta name="author" content=.phpcoder.me">
<!-- Mobile Meta -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<link rel="shortcut icon" href="style/images/img/favicon.ico">
<!-- Web Fonts -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700,300&amp;subset=latin,latin-ext'
rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=PT+Serif' rel='stylesheet' type='text/css'>
<!-- Bootstrap core CSS -->
<link href="style/css/bootstrap.css" rel="stylesheet">
<!-- Font Awesome CSS -->
<link href="style/css/font-awesome.css" rel="stylesheet">
<!-- Fontello CSS -->
<link href="style/css/fontello.css" rel="stylesheet">
<!-- Plugins -->
<link href="style/css/settings.css" media="screen" rel="stylesheet">
<link href="style/css/extralayers.css" media="screen" rel="stylesheet">
<link href="style/css/magnific-popup.css" rel="stylesheet">
<link href="style/css/animations.css" rel="stylesheet">
<link href="style/css/owl.carousel.css" rel="stylesheet">
<!-- iDea core CSS file -->
<link href="style/css/style.css" rel="stylesheet">
<!-- Style Switcher Styles (Remove these two lines) -->
<link href="#" data-style="styles" rel="stylesheet">
<link href="style/css/style-switcher.css" rel="stylesheet">
<link href="style/css/sweetalert.css" rel="stylesheet">
<link href="style/css/sweet-alert.css" rel="stylesheet">
<!-- Custom css -->
<link href="style/css/custom.css" rel="stylesheet">
<script src="http://cdn.bootcss.com/jquery/2.0.3/jquery.min.js"></script>
<script src="http://cdn.bootcss.com/jquery/1.10.2/jquery.min.js"></script>
<!--.php5 shim and Respond.js for IE8 support of.php5 elements and media queries -->
<!--[if lt IE 9]>
<script src="style/js.php5shiv.min.js"></script>
<script src="style/js/respond.min.js"></script>
<![endif]-->
</head>
<!-- body classes:
"boxed": boxed layout mode e.g. <body class="boxed">
"pattern-1 ... pattern-9": background patterns for boxed layout mode e.g. <body class="boxed pattern-1">
-->
<body class="front no-trans">
<!-- scrollToTop -->
<!-- ================ -->
<div class="scrollToTop"><i class="icon-up-open-big"></i></div>
<!-- page wrapper start -->
<!-- ================ -->
<div class="page-wrapper">
<!-- header-top start (Add "dark" class to .header-top in order to enable dark header-top e.g <div class="header-top dark">) -->
<!-- ================ -->
<?php
require_once "controller/Header.php";
$header = Header::getInstance();
$header->headerGenerate(1, 0);
?>
<!-- header end -->
<!-- page-intro start-->
<!-- ================ -->
<div class="page-intro">
<div class="container">
<div class="row">
<div class="col-md-12">
<ol class="breadcrumb">
<li><i class="fa fa-home pr-10"></i><a href="first.php">首页</a></li>
<li class="active">购物车结算</li>
</ol>
</div>
</div>
</div>
</div>
<!-- page-intro end -->
<!-- main-container start -->
<!-- ================ -->
<section class="main-container">
<div class="container">
<div class="row">
<!-- main start -->
<!-- ================ -->
<div class="main col-md-12">
<!-- page-title start -->
<!-- ================ -->
<h1 class="page-title margin-top-clear">结算</h1>
<!-- page-title end -->
<div class="space"></div>
<table class="table cart table-hover table-striped">
<thead>
<tr>
<th>商品</th>
<th>价格</th>
<th>数量</th>
<th class="amount">总计</th>
</tr>
</thead>
<tbody id="boughtsList">
</tbody>
</table>
<div class="space-bottom"></div>
<fieldset>
<legend>账单信息</legend>
<form role="form" class="form-horizontal" id="billing-information">
<div class="row">
<div class="col-lg-3">
<h2 class="title"> 个人信息</h2>
</div>
<div class="col-lg-8 col-lg-offset-1">
<div class="form-group">
<label for="billingFirstName" class="col-md-2 control-label">姓名
<small class="text-default">*</small>
</label>
<div class="col-md-10">
<input type="text" class="form-control" id="billingName"
placeholder="姓名">
</div>
</div>
<div class="form-group">
<label for="billingTel" class="col-md-2 control-label">手机号码
<small class="text-default">*</small>
</label>
<div class="col-md-10">
<input type="text" class="form-control" id="billingTel"
placeholder="手机号码">
</div>
</div>
<div class="form-group">
<label for="billingemail" class="col-md-2 control-label">邮箱
<small class="text-default">*</small>
</label>
<div class="col-md-10">
<input type="email" class="form-control" id="billingemail"
placeholder="邮箱">
</div>
</div>
</div>
</div>
<div class="space"></div>
<div class="row">
<div class="col-lg-3">
<h2 class="title">您的地址</h2>
</div>
<div class="col-lg-8 col-lg-offset-1">
<div class="form-group">
<label for="billingAddress1" class="col-md-2 control-label">地址
<small class="text-default">*</small>
</label>
<div class="col-md-10">
<input type="text" class="form-control" id="billingAddress"
placeholder="收货地址">
</div>
</div>
</div>
</div>
<div class="space"></div>
<div class="row">
<div class="col-lg-3">
<h2 class="title">补充信息</h2>
</div>
<div class="col-lg-8 col-lg-offset-1">
<div class="form-group">
<div class="col-md-12">
<textarea class="form-control" rows="4" id="addtionMessage"></textarea>
</div>
</div>
</div>
</div>
</form>
</fieldset>
<div class="text-right">
<a href="shop-cart.php" class="btn btn-group btn-default btn-sm"><i
class="icon-left-open-big"></i> 回退到购物车</a>
<button type="button" id="commitInfo" class="btn btn-group btn-default btn-sm">确定</button>
</div>
</div>
<!-- main end -->
</div>
</div>
</section>
<!-- main-container end -->
<!-- section start -->
<!-- ================ -->
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<!-- section end -->
<!-- footer start (Add "light" class to #footer in order to enable light footer) -->
<!-- ================ -->
<?php
include_once "controller/Footer.php";
?>
<!-- footer end -->
</div>
<!-- page-wrapper end -->
<!-- JavaScript files placed at the end of the document so the pages load faster
================================================== -->
<!-- Jquery and Bootstap core js files -->
<script type="text/javascript" src="style/js/jquery.min.js"></script>
<script type="text/javascript" src="style/js/bootstrap.min.js"></script>
<script type="text/javascript" src="style/js/sweetalert.min.js"></script>
<!-- Modernizr javascript -->
<script type="text/javascript" src="style/js/modernizr.js"></script>
<!-- Isotope javascript -->
<script type="text/javascript" src="style/js/isotope.pkgd.min.js"></script>
<!-- Owl carousel javascript -->
<script type="text/javascript" src="style/js/owl.carousel.js"></script>
<!-- Magnific Popup javascript -->
<script type="text/javascript" src="style/js/jquery.magnific-popup.min.js"></script>
<!-- Appear javascript -->
<script type="text/javascript" src="style/js/jquery.appear.js"></script>
<!-- Sharrre javascript -->
<script type="text/javascript" src="style/js/jquery.sharrre.js"></script>
<!-- Count To javascript -->
<script type="text/javascript" src="style/js/jquery.countTo.js"></script>
<!-- Parallax javascript -->
<script src="style/js/jquery.parallax-1.1.3.js"></script>
<!-- Contact form -->
<script src="style/js/jquery.validate.js"></script>
<!-- SmoothScroll javascript -->
<script type="text/javascript" src="style/js/jquery.browser.js"></script>
<script type="text/javascript" src="style/js/SmoothScroll.js"></script>
<!-- Initialization of Plugins -->
<script type="text/javascript" src="style/js/template.js"></script>
<!-- Custom Scripts -->
<script type="text/javascript" src="style/js/custom.js"></script>
<!-- Color Switcher (Remove these lines) -->
<script type="text/javascript" src="style/js/style-switcher.js"></script>
<!-- Color Switcher End -->
<script type="text/javascript" src="style/js/Helper/front/shop-checkout.js"></script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/shine_share/Company-Website-Pro.git
git@gitee.com:shine_share/Company-Website-Pro.git
shine_share
Company-Website-Pro
Company-Website-Pro
master

搜索帮助