1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-09-19 23:21:47 +02:00
polr/resources/views/shorten_result.blade.php

16 lines
397 B
PHP
Raw Normal View History

2015-11-06 00:16:55 +01:00
@extends('layouts.base')
@section('css')
<link rel='stylesheet' href='/css/shorten_result.css' />
@endsection
2015-11-06 00:16:55 +01:00
@section('content')
<h3>Shortened URL</h3>
<input type='text' class='result-box form-control' value='{{$short_url}}' />
<a href='{{route('index')}}' class='btn btn-info back-btn'>Shorten another</a>
@endsection
@section('js')
<script src='/js/shorten_result.js'></script>
2015-11-06 00:16:55 +01:00
@endsection