Created
January 15, 2013 16:39
-
-
Save MarkyC/4539964 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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