aboutsummaryrefslogtreecommitdiffstats
path: root/libpathod/templates/previewform.html
blob: 42502ba799dc7b83beaace609d60645a2f53e210 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<form class="well form-search" method="GET" action="/preview">
    <input id="spec" style="width: 30em;" name="spec" class="input-medium search-query" value="{{spec}}">
    <input type="submit" class="btn" value="preview">
    <a href="#" id="submitspec" class="btn">go</a>
</form>
<script>
    $(function(){
        $("#submitspec").click(function(){
            document.location = "/p/" + $("#spec").val()
        });
    });
</script>