Skip to content

Instantly share code, notes, and snippets.

@MilanGrubnic70
Last active August 29, 2015 14:02
Show Gist options
  • Save MilanGrubnic70/34da410619cb6dd9b579 to your computer and use it in GitHub Desktop.
Save MilanGrubnic70/34da410619cb6dd9b579 to your computer and use it in GitHub Desktop.
Login, Signin, Edit Forms
<h3>Please Log in:</h3>
<form name="input" action="/signup" method="post"><br>
First Name: <input type="text" name="new_user[first_name]"><br>
Last Name: <input type="text" name="new_user[last_name]"><br>
Email: <input type="text" name="new_user[email]"><br>
Password: <input type="password" name="new_user[password]"><br>
<input type="submit" value="Sign Up!">
</form>
<br>
<hr>
<h3>Please Sign Up:</h3>
<form name="input" action="/login" method="post"><br>
Email: <input type="text" name="email"><br>
Password: <input type="password" name="password"><br>
<input type="submit" value="Log In!">
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment