aboutsummaryrefslogtreecommitdiffstats
path: root/phonegap/www/report_created.html
blob: 7f049393bc73b7851be00b1f9e491912f666515e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!doctype html>
    <head>
        <meta name="viewport" content="initial-scale=1.0">

        <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
        <meta name="HandHeldFriendly" content="true">
        <meta name="mobileoptimized" content="0">

        <link rel="stylesheet" href="css/base.css">
        <link rel="stylesheet" href="css/mobile.css">
        <link rel="stylesheet" href="css/layout.css" media="(min-width:48em)">

<meta http-equiv="content-type" content="text/html; charset=utf-8">
<script type="text/javascript" src="js/config.js"></script>
<script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>
<script type="text/javascript" src="js/jquery-1.7.0.min.js"></script>

<script type="text/javascript">
    $(function() {
        var uri = CONFIG.FMS_URL + 'report/' + localStorage.report;
        $('#report_url').html( '<a href="' + uri + '">' + uri + '</a>' );
    });
</script>


<title>
    Report Created :: 
    FixMyStreet
</title>



    </head>
    <body class="mobile-header">

    <div class="wrapper">
        <div class="table-cell">
            <header id="site-header" role="banner">
                <div class="container">
                    <a href="/" id="site-logo">FixMyStreet</a>
                </div>
            </header>


            <div class="container">
                <div class="content" role="main">


<h1>Your report has been created</h1>

                    <p>You can view it on the site at <span id="report_url"></span></p>
                    
                </div><!-- .content role=main -->
            </div><!-- .container -->
        </div><!-- .table-cell -->

        <div class="big-green-banner mobile-map-banner mobile-nav-banner">
            <a href="index.html">home</a>
            Report Created
        </div>
        
        <div class="mobile-info">
            <a href="about.html">i</a>
        </div>

    </div> <!-- .wrapper -->
</body>
</html>