Removing useless class for table

This commit is contained in:
Marc Ducobu 2015-09-01 16:46:28 +02:00
parent 7b391d3212
commit 2f0197aff3

View File

@ -22,7 +22,7 @@
<div class="grid-12 parent" > <div class="grid-12 parent" >
<div class="grid-10 push-1 parent"> <div class="grid-10 push-1 parent">
{% if alternatePersons is not empty %} {% if alternatePersons is not empty %}
<table class="rounded stripped" style="width=100%"> <table>
<thead> <thead>
<tr> <tr>
<th class="chill-red">{{ 'Name'|trans }}</th> <th class="chill-red">{{ 'Name'|trans }}</th>
@ -55,7 +55,6 @@
<div id="person_details"> <div id="person_details">
{{ form_start(form) }} {{ form_start(form) }}
<h2>{{ 'You will create this person'|trans }}</h2> <h2>{{ 'You will create this person'|trans }}</h2>
<dl> <dl>
<dt>{{ 'First name'|trans }}</dt> <dt>{{ 'First name'|trans }}</dt>
<dd>{{ firstName }}</dd> <dd>{{ firstName }}</dd>
@ -75,7 +74,6 @@
{{ form_rest(form) }} {{ form_rest(form) }}
<button class="sc-button green" type="submit"><i class="fa fa-check"></i> {{ 'Confirm the creation'|trans }}</button> <button class="sc-button green" type="submit"><i class="fa fa-check"></i> {{ 'Confirm the creation'|trans }}</button>
{{ form_end(form) }} {{ form_end(form) }}
</div> </div>
</div> </div>