Skip to content

Instantly share code, notes, and snippets.

@arvindravi
Created April 28, 2012 07:43
Show Gist options
  • Save arvindravi/2516934 to your computer and use it in GitHub Desktop.
Save arvindravi/2516934 to your computer and use it in GitHub Desktop.
Twit - new.html.erb
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<div>
<%= form_for @user , :url => {:action => "/create", :method => "post"} do |f| %>
Username : <%= f.text_field :username %><br />
Password :<%= f.password_field :password %><br />
First Name : <%= f.text_field :firstname %><br />
Last Name : <%= f.text_field :lastname %><br />
Email : <%= f.text_field :email %><br />
<%= f.submit "Submit" %>
<% end %>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment