Exemplo n.º 1
0
                                                                                 name="userLastName"
                                                                                 id="userLastName"
                                                                                 value="<?php 
echo $defaultUserLastName;
?>
"/>
    </div>
    <div><label for="password" class="mylabelstyle">Password:</label><input type="password" name="password"
                                                                            id="password"/></div>
    <div><label for="rePassword" class="mylabelstyle">Retype Password:</label><input type="password"
                                                                                     name="rePassword"
                                                                                     id="rePassword"/>
    </div>
    <div><label class="mylabelstyle">Date of Birth:</label>
        <select name="year"><?php 
yearOptions(date('Y'));
?>
</select>
        <select name="month"><?php 
monthOptions();
?>
</select>
        <select name="day"><?php 
dayOptions();
?>
</select>
    </div>
    <div>
        <?php 
User::printOptionsFor(User::$GENDER);
?>
Exemplo n.º 2
0
                                                                                 name="userLastName"
                                                                                 id="userLastName"
                                                                                 value="<?php 
echo $defaultUserLastName;
?>
"/>
    </div>
    <div><label for="password" class="mylabelstyle">Password:</label><input type="password" name="password"
                                                                            id="password"/></div>
    <div><label for="rePassword" class="mylabelstyle">Retype Password:</label><input type="password"
                                                                                     name="rePassword"
                                                                                     id="rePassword"/>
    </div>
    <div><label class="mylabelstyle">Date of Birth:</label>
        <select name="year"><?php 
yearOptions($default_year, date('Y'));
?>
</select>
        <select name="month"><?php 
monthOptions($default_month);
?>
</select>
        <select name="day"><?php 
dayOptions($default_day);
?>
</select>
    </div>
    <div>
        <?php 
User::printOptionsFor(User::$GENDER, $default_gender);
?>
Exemplo n.º 3
0
typeOptions();
?>
</select>
			<span>Date:</span>
			<div class="container">
				<div class="date">
					<select name="day" class="day"><?php 
dayOptions();
?>
</select>
					<select name="month" class="month"><?php 
monthOptions();
?>
</select>
					<select name="year" class="year"><?php 
yearOptions();
?>
</select>
				</div>
			</div>
		</div>
		<input type="hidden" name="csrf" value="<?php 
echo $_SESSION['csrf'];
?>
">
		<input type="submit" value="Submit" name="Event_Submit" class="event_submit">
	</form>
	<?php 
include 'Database/event_connection.php';
include 'PHP/event_creation.php';
?>