frontend: fix checkout form mb

Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
This commit is contained in:
Ahmet Alp Balkan 2018-07-02 15:44:25 -07:00
parent 39169ca498
commit 6a5ba2a51d

View file

@ -57,17 +57,17 @@
<h3>Checkout</h3> <h3>Checkout</h3>
<form action="/cart/checkout" method="POST"> <form action="/cart/checkout" method="POST">
<div class="form-row"> <div class="form-row">
<div class="col-md-5 mb-4"> <div class="col-md-5 mb-3">
<label for="email">E-mail Address</label> <label for="email">E-mail Address</label>
<input type="email" class="form-control" id="email" <input type="email" class="form-control" id="email"
name="email" value="someone@example.com" required> name="email" value="someone@example.com" required>
</div> </div>
<div class="col-md-5 mb-4"> <div class="col-md-5 mb-3">
<label for="street_address">Street Address</label> <label for="street_address">Street Address</label>
<input type="text" class="form-control" name="street_address" <input type="text" class="form-control" name="street_address"
id="street_address" value="1600 Amphitheatre Parkway" required> id="street_address" value="1600 Amphitheatre Parkway" required>
</div> </div>
<div class="col-md-2 mb-4"> <div class="col-md-2 mb-3">
<label for="zip_code">Zip Code</label> <label for="zip_code">Zip Code</label>
<input type="text" class="form-control" <input type="text" class="form-control"
name="zip_code" id="zip_code" value="94043" required pattern="\d{4,5}"> name="zip_code" id="zip_code" value="94043" required pattern="\d{4,5}">