shorten/views/new.erb

12 lines
572 B
Text
Raw Normal View History

<p style="margin-top:100px;">Shorten URL -- <a href="/upload">Upload File</a></p>
<% formtext = "Type URL. Press Enter." %>
2010-09-14 04:02:57 +00:00
<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 %>'; }"/><br/>
Embed as image? <input type="checkbox" name="image" />
<input type="hidden" value="<%= Shorten.button_text %>" id="create_url" />
2010-09-14 04:02:57 +00:00
</form>
2010-09-14 04:02:57 +00:00
<%= @information %>