shorten/views/new.erb

10 lines
No EOL
423 B
Text
Executable file

<% formtext = "Type URL. Press Enter." %>
<form method="POST" action="/">
<input type="text" name="url" id="url" size="30" value="<%= formtext %>"
onfocus="if ( this.value=='<%= formtext %>' ) { this.value = ''; }"
onblur="if ( this.value=='' ) { this.value = '<%= formtext %>'; }"/>
<input type="hidden" value="<%= Shorten.button_text %>" id="create_url" />
</form>
<%= @information %>