Skip to content

Instantly share code, notes, and snippets.

@phawk
Created January 15, 2012 12:07
Show Gist options
  • Select an option

  • Save phawk/1615639 to your computer and use it in GitHub Desktop.

Select an option

Save phawk/1615639 to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="en">
<head>
<title>User registration</title>
</head>
<body>
<?=form_open(current_url())?>
<p><?=form_label('first name')?>
<?=form_input('first_name')?></p>
<p><?=form_label('last name')?>
<?=form_input('last_name')?></p>
<p><?=form_label('email')?>
<?=form_input('email')?></p>
<p><?=form_label('pass1')?>
<?=form_password('pass1')?></p>
<p><?=form_label('pass2')?>
<?=form_password('pass2')?></p>
<p><?=form_submit('regitser','Register')?></p>
<?=form_close()?>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment