/lenasys/0.1

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/0.1

« back to all changes in this revision

Viewing changes to trunk/DuggaSys/changePassword/pageframe.html.php

  • Committer: gustav.hartvigsson at gmail
  • Date: 2013-04-02 13:00:31 UTC
  • mfrom: (4.7.8 GammaBear)
  • Revision ID: gustav.hartvigsson@gmail.com-20130402130031-442y89s0cfzmw3r2
Merged stuff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
                                        $(this).find("#scrolly").val($(document).scrollTop());
19
19
                                        //var val = $("input[type=submit][clicked=true]").val()
20
20
                                });
21
 
                                $('.confirm').click(function(){
 
21
                                $('.confirm').click(function() {
22
22
                                        var answer = confirm('Are you sure?');
23
23
                                        return answer // answer is a boolean
24
24
                                });  
25
25
                                <?php 
26
 
                                if(isset($_POST['scrolly'])){ 
 
26
                                if(isset($_POST['scrolly'])) { 
27
27
                                        echo '$(document).scrollTop('.$_POST['scrolly'].');';
28
28
                                        //echo 'alert("setting scrolly");';
29
29
                                }       
35
35
        </head>
36
36
        <body>
37
37
        <div id="wrapper">
38
 
 
39
 
            <div id="menu">
40
 
                <?php include "menu.php"; ?>
41
 
            </div>
42
 
            <div id="content">
43
 
                <?php
44
 
                if (isset($errorMsg) && $errorMsg != "") {
45
 
                   echo "<p class='errorMsg'>".$errorMsg."</p>";
46
 
                } 
 
38
                <div id="menu">
 
39
                        <?php include "menu.php"; ?>
 
40
                        </div>
 
41
                                <div id="content">
 
42
                                <?php
 
43
                                if (isset($errorMsg) && $errorMsg != "") {
 
44
                                        echo "<p class='errorMsg'>".$errorMsg."</p>";
 
45
                                } 
47
46
                                if (isset($userMsg) && $userMsg != "") {
48
 
                   echo "<h3>".$userMsg."</h3>";
49
 
                }
50
 
                ?>
51
 
                <?php
52
 
                // DEBUG //////
 
47
                                        echo "<h3>".$userMsg."</h3>";
 
48
                                }
 
49
                        ?>
 
50
                        <?php
 
51
                                // DEBUG //////
53
52
                                /*echo "<pre>";
54
 
                print_r($_POST);
55
 
                                //print_r($_SESSION);
56
 
                echo "</pre>";*/
57
 
                                ///////////////
58
 
                ?>
59
 
                <?php include $content; ?>
60
 
            </div>
61
 
            <div id="footer">
62
 
                <p>Page footer</p>
63
 
                                 <?php
64
 
                // DEBUG //////
65
 
                                echo "<pre>";
66
 
                print_r($_POST);
67
 
                                //print_r($_SESSION);
68
 
                echo "</pre>";
69
 
                                ///////////////
70
 
                ?>
71
 
            </div>
72
 
        </div>  
73
 
    </body>
 
53
                                print_r($_POST);
 
54
                                //print_r($_SESSION);
 
55
                                echo "</pre>";*/
 
56
                                ///////////////
 
57
                        ?>
 
58
                        <?php include $content; ?>
 
59
                        </div>
 
60
                        <div id="footer">
 
61
                                <p>Page footer</p>
 
62
                                <?php
 
63
                                        // DEBUG //////
 
64
                                        echo "<pre>";
 
65
                                        print_r($_POST);
 
66
                                        //print_r($_SESSION);
 
67
                                        echo "</pre>";
 
68
                                        ///////////////
 
69
                                ?>
 
70
                        </div>
 
71
                </div>
 
72
        </body>
74
73
</html>