Lines 66-72
Link Here
|
66 |
<fieldset class="brief"> |
66 |
<fieldset class="brief"> |
67 |
<ol> |
67 |
<ol> |
68 |
<li><label for="dob">Date of Birth: </label> <input id="dob" type="text" size="10" value="[% BORROWER_INF.dateofbirth %]" name="dateofbirth" /></li> |
68 |
<li><label for="dob">Date of Birth: </label> <input id="dob" type="text" size="10" value="[% BORROWER_INF.dateofbirth %]" name="dateofbirth" /></li> |
69 |
<li><label for="sex">Sex: </label> <select name="sex" id="sex"><option></option> |
69 |
<li><label for="sex">Gender: </label> <select name="sex" id="sex"><option></option> |
70 |
[% IF ( BORROWER_INF.sex == 'F' ) %]<option value="F" selected="selected">Female</option>[% ELSE %]<option value="F">Female</option>[% END %] |
70 |
[% IF ( BORROWER_INF.sex == 'F' ) %]<option value="F" selected="selected">Female</option>[% ELSE %]<option value="F">Female</option>[% END %] |
71 |
[% IF ( BORROWER_INF.sex == 'M' ) %]<option value="M" selected="selected">Male</option>[% ELSE %]<option value="M">Male</option>[% END %] |
71 |
[% IF ( BORROWER_INF.sex == 'M' ) %]<option value="M" selected="selected">Male</option>[% ELSE %]<option value="M">Male</option>[% END %] |
72 |
</select></li> |
72 |
</select></li> |
Lines 126-132
Link Here
|
126 |
<legend>Personal Information</legend> |
126 |
<legend>Personal Information</legend> |
127 |
<ol> |
127 |
<ol> |
128 |
<li><span class="label">Date of Birth:</span> [% BORROWER_INF.dateofbirth %]</li> |
128 |
<li><span class="label">Date of Birth:</span> [% BORROWER_INF.dateofbirth %]</li> |
129 |
<li><span class="label">Sex:</span> |
129 |
<li><span class="label">Gender:</span> |
130 |
[% IF ( sex == 'F' ) %]Female[% END %] |
130 |
[% IF ( sex == 'F' ) %]Female[% END %] |
131 |
[% IF ( sex == 'M' ) %]Male[% END %] |
131 |
[% IF ( sex == 'M' ) %]Male[% END %] |
132 |
</li> |
132 |
</li> |
133 |
- |
|
|