HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers42/tandartsmaas.nl/app/storage/views/7353cdbb34614279e8bb439461476c5f
<?php
    $style = unserialize($style);

    $colors = new stdClass();
    $colors->text = '#52405B';

    $font = new stdClass();
    $font->default = 'font-family: Helvetica, Arial, sans-serif; font-size: 15px; font-weight: 400; line-height: 1.4;';
    $font->title = 'font-family: Helvetica, Arial, sans-serif; font-size: 16px; font-weight: 700; line-height: 1.4;';
    $font->button = 'font-family: Helvetica, Arial, sans-serif; font-size: 15px; font-weight: 700; line-height: 1.4;';

?>

<table cellpadding="0" cellspacing="0" border="0">

    <h2 style="<?php echo $font->title; ?> color: <?php echo $colors->text; ?>;">Gegegevens</h2>

    <?php

        if(isset($gender))
        {
           if($gender == 'male') $gender = 'Man';
           if($gender == 'female') $gender = 'Vrouw';
        }
    ?>

    <tr>
        <td colspan="2" style="<?php echo $font->default; ?> color: <?php echo $colors->text; ?>; padding-bottom: 20px"><strong>Geslacht</strong>:<br /><?php echo $gender; ?></td>
    </tr>

    <tr>
        <td colspan="2" style="<?php echo $font->default; ?> color: <?php echo $colors->text; ?>;padding-bottom: 20px"><strong>Naam</strong>:<br /><?php echo $name; ?></td>
    </tr>

    <tr>
        <td  colspan="2" style="<?php echo $font->default; ?> color: <?php echo $colors->text; ?>;padding-bottom: 20px"><strong>E-mail</strong>:<br /><?php echo $email; ?></td>
    </tr>
    <tr>
        <td  colspan="2" style="<?php echo $font->default; ?> color: <?php echo $colors->text; ?>;padding-bottom: 20px"><strong>BSN</strong>:<br /><?php echo $bsn; ?></td>
    </tr>

    <?php if( ! empty($phone)): ?>
        <tr>
            <td colspan="2" style="<?php echo $font->default; ?> color: <?php echo $colors->text; ?>;padding-bottom: 20px"><strong>Telefoon</strong>:<br /><?php echo $phone; ?></td>
        </tr>
    <?php endif; ?>
</table>