summaryrefslogtreecommitdiffstats
path: root/views/users/profile.html.php
blob: a29304dc6e63db11085d01abd14c80bcc50d6e0b (plain)
1
2
3
4
5
6
7
8
9
<h1><?=$user->name; ?></h1>
<?= $this->form->create($photo, array('type' => 'file')); ?>
	<?php if($photo->exists()): ?>
		<?= $this->form->label("This is you"); ?>
	<?php else: ?>
		<p>Upload a photo</p>
		<?= $this->form->field('file', array('type' => 'file')); ?>
	<?php endif; ?>
<?= $this->form->end(); ?>