Skip to content
Permalink
ba108e7ffc
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
85 lines (79 sloc) 2.65 KB
<%@page import="cfy.model.Cart"%>
<%@page import="java.util.ArrayList"%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%
ArrayList<Cart> cart_list = (ArrayList<Cart>) session.getAttribute("cart-list");
%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<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>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<div class="row ">
<div class="col-xs-12 col-md-4">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Payment Details</h3>
<div class="checkbox pull-right">
<label> <input type="checkbox" /> Remember
</label>
</div>
</div>
<div class="panel-body">
<form action="order-now" method="post">
<div class="form-group">
<label for="cardNumber"> CARD NUMBER</label>
<div class="input-group">
<input type="text" class="form-control" id="cardNumber" name="cardNumber"
placeholder="Valid Card Number" required autofocus /> <span
class="input-group-addon"><span
class="glyphicon glyphicon-lock"></span></span>
</div>
</div>
<div class="row">
<div class="col-xs-7 col-md-7">
<div class="form-group">
<label for="expityMonth"> EXPIRY DATE</label>
<div class="col-xs-6 col-lg-6 pl-ziro">
<input type="text" class="form-control" id="expityMonth"
placeholder="MM" required />
</div>
<div class="col-xs-6 col-lg-6 pl-ziro">
<input type="text" class="form-control" id="expityYear"
placeholder="YY" required />
</div>
</div>
</div>
<div class="col-xs-5 col-md-5 pull-right">
<div class="form-group">
<label for="cvCode"> CV CODE</label> <input type="password"
class="form-control" id="cvCode" placeholder="CV" required />
</div>
</div>
</div>
<ul class="nav nav-pills nav-stacked">
<li class="active"><a href="#"><span
class="badge pull-right"><span
class="glyphicon glyphicon-usd"></span>4200</span> Final Payment</a></li>
</ul>
<br />
<button class="btn btn-success btn-lg btn-block" type="submit">Pay</button>
</form>
</div>
</div>
</div>
</div>
</div>
</body>
</html>