diff --git a/sm-shop/src/main/webapp/pages/shop/common/checkout/creditcard.jsp b/sm-shop/src/main/webapp/pages/shop/common/checkout/creditcard.jsp
new file mode 100755
index 0000000..0ef38c2
--- /dev/null
+++ b/sm-shop/src/main/webapp/pages/shop/common/checkout/creditcard.jsp
@@ -0,0 +1,26 @@
+<%
+response.setCharacterEncoding("UTF-8");
+response.setHeader("Cache-Control","no-cache");
+response.setHeader("Pragma","no-cache");
+response.setDateHeader ("Expires", -1);
+%>
+
+<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
+<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
+<%@ taglib uri="http://www.springframework.org/tags" prefix="s" %>
+<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form" %>
+<%@ taglib uri="http://www.springframework.org/security/tags" prefix="sec" %>
+
+<%@page contentType="text/html"%>
+<%@page pageEncoding="UTF-8"%>
+
+
+
+ <div class="control-group">
+ <label class="control-label"><s:message code="label.payment.creditcard.usecredicard" text="Use your credit card" /></label>
+ <div class="controls">
+ <jsp:include page="/pages/shop/common/checkout/selectedPayment.jsp" />
+ </div>
+ </div>
+
+ <jsp:include page="/pages/shop/common/checkout/creditCardInformations.jsp" />
\ No newline at end of file