Author: deepak Date: Mon Dec 25 09:20:53 2017 New Revision: 1819236 URL: http://svn.apache.org/viewvc?rev=1819236&view=rev Log: Improved: Update markup of Anonymous login page according to standard markup given by Bootstrap v4.0.0 (OFBIZ-10116) Thanks Parakh and Mayank for your contribution
Modified: ofbiz/ofbiz-plugins/trunk/ecommerce/template/order/StartAnonCheckout.ftl Modified: ofbiz/ofbiz-plugins/trunk/ecommerce/template/order/StartAnonCheckout.ftl URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/trunk/ecommerce/template/order/StartAnonCheckout.ftl?rev=1819236&r1=1819235&r2=1819236&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/trunk/ecommerce/template/order/StartAnonCheckout.ftl (original) +++ ofbiz/ofbiz-plugins/trunk/ecommerce/template/order/StartAnonCheckout.ftl Mon Dec 25 09:20:53 2017 @@ -25,14 +25,18 @@ under the License. </#if> <#if (shoppingCartSize > 0)> -<div class="screenlet"> - <h3>${uiLabelMap.CommonCheckoutAnonymous}</h3> +<div class="d-flex justify-content-center"> +<div class="card"> + <div class="card-header">${uiLabelMap.CommonCheckoutAnonymous}</div> + <div class="card-body"> <p>${uiLabelMap.CommonCheckoutAnonymousMsg}:</p> - <ul> + <ul class="list-unstyled"> <li><a href="<@ofbizUrl>setCustomer</@ofbizUrl>">${uiLabelMap.OrderCheckout}</a></li> <li><a href="<@ofbizUrl>quickAnonCheckout</@ofbizUrl>">${uiLabelMap.OrderCheckoutQuick}</a></li> <li><a href="<@ofbizUrl>anonOnePageCheckout</@ofbizUrl>">${uiLabelMap.EcommerceOnePageCheckout}</a></li> </ul> + </div> +</div> </div> </#if>