You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
507 B
17 lines
507 B
!!!5
|
|
%html
|
|
%head
|
|
%title Shortlink App
|
|
%link{ rel:"stylesheet", href:"/styles/main.css" }
|
|
%body
|
|
.container
|
|
%h1 shortlink app
|
|
%form{ method:"post" }
|
|
%input{ type:"text", value:"#{params[:url]}", name:"url", id:"url" }
|
|
%input{ type:"submit", value:"shorten", id:"submit" }
|
|
.clear
|
|
-if @shortcode
|
|
.result
|
|
Your shortened URL is:
|
|
%a{ href:"http://jinfield.com/#{@shortcode}" }
|
|
href:"http://jinfield.com/#{@shortcode}"
|