Skip to content

Instantly share code, notes, and snippets.

@MarkyC
Created January 15, 2013 16:39
Show Gist options
  • Select an option

  • Save MarkyC/4539964 to your computer and use it in GitHub Desktop.

Select an option

Save MarkyC/4539964 to your computer and use it in GitHub Desktop.
<form id="signup" onSubmit="return validateForm();"
21action="login-verify.php" method="post">
<label for="email">Name:
<input name="email" id="email" type="text" class="input-block-level"
value="<?php echo $first_name ?>'s Timetable">
</label>
<label for="private">Visibility:
<select name="private" id="private" class="input-block-level">
<option value="private">private</option>
<option value="public">public</option>
</select>
</label>
<label for="location">Location:
<input name="location" id="location" type="text" class="input-block-level">
</label>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment